@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&amp;display=swap");
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

:root {
  --main: #ef770a;
  --main2: #21282e;
  --second: #3ead75;
  --third: #00b6ba;
  --gray: #f1f2f0;
  --white: #ffffff;
  --text: #666;
  --black: #000;
  --box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
  --box-shadow2: 0 8px 10px rgba(0, 0, 0, 0.3), 0 -8px 10px rgba(0, 0, 0, 0.3);
  --bg: rgba(255, 255, 255, 0.05);
  --radius: 15px;
  --inputstrock: #1d1c1caf;
  --border: 1px solid rgba(255, 255, 255, 0.25);
  --effect: rgba(255, 255, 255, 0.2);
  --filter: brightness(0) invert(1);
  --background: linear-gradient(var(--main), #ff8a42da),
    url("../images/fav.svg");
  --wave: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

/* Dark Theme */
body.dark {
  --main: #ef770a;
  --main2: #ffffff;
  --second: #3ead75;
  --third: #00b6ba;
  --gray: #21282e;
  --white: #21282e;
  --text: #f1f1f1;
  --black: #ffffff;
  --inputstrock: #f9f8f87a;
  --box-shadow: 0 8px 10px rgba(129, 127, 127, 0.171);
  --box-shadow2: 0 8px 10px rgba(129, 127, 127, 0.171),
    0 -8px 10px rgba(129, 127, 127, 0.171);
  --bg: rgba(235, 232, 232, 0.3);
  --border: 1px solid rgba(36, 35, 35, 0.25);
  --effect: rgba(229, 208, 166, 0.178);
  --filter: grayscale(1) brightness(0.8);
  --background: linear-gradient(var(--main), #ff8a42da),
    url("../images/fav.svg");
  --wave: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23e0e0e0' fill-opacity='0.3' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'></path></svg>");
}

.preloader {
  background-color: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.preloader .sec-logo {
  width: 35%;
  height: 35%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Light Mode */
.preloader {
  background: var(--black);
}

/* Dark Mode */
.dark .preloader {
  background: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--main);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}
.back-to-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}
.back-to-top i {
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s ease;
}
.back-to-top:hover .back-to-top i {
  transform: rotate(360deg);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--main2);
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none;
}

html[lang=ar] {
  direction: rtl;
}
html[lang=ar] input[type=email],
html[lang=ar] input[type=tel] {
  direction: rtl;
}
html[lang=ar] .form-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  direction: rtl;
}
html[lang=ar] .form-check .form-check-input {
  margin: 0;
}

html[lang=en] {
  direction: ltr;
}
html[lang=en] .reviews-section .reviews-header .reviews-nav .btn-nav {
  transform: rotate(180deg);
}
html[lang=en] main .paths .path-section .path-content .path-features li::before {
  left: -15px;
}
html[lang=en] main .clients-section .btn-custom i {
  transform: rotateY(180deg);
}

body {
  background-color: var(--black) !important;
  overflow-x: hidden;
  position: relative;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

.form-check-inline {
  margin-right: -20px !important;
}

.row {
  margin: 0;
  padding: 0;
}

.section-title2 {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: var(--white);
  margin-bottom: 60px;
}
.section-title2::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 5px;
  width: 12px;
  height: 5px;
  background: var(--third);
  border-radius: 40%;
  z-index: 11;
}
.section-title2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: width 0.4s ease;
}
.section-title2::after:hover::before {
  animation: moveCircle 1.3s forwards;
}
.section-title2::after:not(:hover)::before {
  animation: moveCircleReverse 1.3s forwards;
}
.section-title2:hover::before {
  animation: moveCircle 1.3s forwards;
}
.section-title2:not(:hover)::before {
  animation: moveCircleReverse 1.3s forwards;
}
.section-title2:hover::before {
  animation: moveCircle 1.3s forwards;
}
.section-title2:not(:hover)::before {
  animation: moveCircleReverse 1.3s forwards;
}

@keyframes moveCircle {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    right: 90%;
    transform: translateX(90%);
    opacity: 1;
  }
}
@keyframes moveCircleReverse {
  from {
    right: 90%;
    transform: translateX(90%);
    opacity: 1;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.submit-btn {
  background: var(--third);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.submit-btn:hover::before {
  left: 100%;
}

@keyframes animateBg {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.548);
  z-index: 1;
}
.banner .careers-header {
  position: relative;
  z-index: 2;
  top: 3rem;
}
.banner .careers-header .careers-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
}
.banner .careers-header .careers-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .banner .careers-header {
    top: 0rem;
  }
  .banner .careers-header .careers-title {
    font-size: 1.5rem;
  }
  .banner .careers-header .careers-subtitle {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .banner .careers-header .careers-title {
    font-size: 1.3rem;
  }
  .banner .careers-header .careers-subtitle {
    font-size: 0.8rem;
  }
}

.body-overlay {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  top: 0;
  opacity: 1;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: top left;
  background-image: url(../images/body-bg.png);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
}
header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 30px;
}
header .top-bar .left,
header .top-bar .center,
header .top-bar .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .top-bar .left {
  justify-content: flex-start;
}
header .top-bar .center .logo img {
  height: 35px;
}
@media screen and (max-width: 768px) {
  header .top-bar .center .logo img {
    height: 22px;
  }
}
header .top-bar .right {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 15px;
}
header .top-bar .right .lang-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}
header .top-bar .right .lang-btn:hover {
  color: var(--main);
}
header .top-bar .right .toggler {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}
@media screen and (max-width: 759px) {
  header .top-bar .right .toggler {
    display: block;
  }
}
header .bottom-bar {
  padding: 10px 0;
}
header .bottom-bar .nav_links {
  display: flex;
  justify-content: center;
  gap: 80px;
  list-style: none;
  transition: 0.4s;
}
@media screen and (max-width: 969px) {
  header .bottom-bar .nav_links {
    gap: 30px;
  }
}
header .bottom-bar .nav_links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 969px) {
  header .bottom-bar .nav_links a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 759px) {
  header .bottom-bar .nav_links a {
    color: var(--white);
  }
}
header .bottom-bar .nav_links a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 5px;
  width: 12px;
  height: 5px;
  background: var(--third);
  border-radius: 40%;
  z-index: 11;
}
header .bottom-bar .nav_links a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: width 0.4s ease;
}
@media screen and (max-width: 759px) {
  header .bottom-bar .nav_links a::after {
    background: black;
  }
}
header .bottom-bar .nav_links a::after:hover::before {
  animation: moveCircle 1.3s forwards;
}
header .bottom-bar .nav_links a::after:not(:hover)::before {
  animation: moveCircleReverse 1.3s forwards;
}
header .bottom-bar .nav_links a:hover::before {
  animation: moveCircle 1.3s forwards;
}
header .bottom-bar .nav_links a:not(:hover)::before {
  animation: moveCircleReverse 1.3s forwards;
}
@keyframes moveCircle {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    right: 90%;
    transform: translateX(90%);
    opacity: 1;
  }
}
@keyframes moveCircleReverse {
  from {
    right: 90%;
    transform: translateX(90%);
    opacity: 1;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 759px) {
  header .bottom-bar .nav_links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    background: var(--black);
    height: 100vh;
    width: 260px;
    transition: 0.4s ease;
    z-index: 1000;
    padding: 50px 0;
  }
  header .bottom-bar .nav_links.active {
    right: 0;
  }
}
header .theme-switch-wrapper {
  display: flex;
  align-items: center;
}
header .theme-switch-wrapper .theme-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  header .theme-switch-wrapper .theme-switch {
    width: 50px;
    height: 20px;
  }
}
header .theme-switch-wrapper .theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
header .theme-switch-wrapper .theme-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 30px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}
header .theme-switch-wrapper .theme-switch .slider i {
  font-size: 16px;
  color: #fff;
  transition: opacity 0.4s, transform 0.4s;
}
header .theme-switch-wrapper .theme-switch .slider .sun-icon {
  opacity: 1;
}
header .theme-switch-wrapper .theme-switch .slider .moon-icon {
  opacity: 0;
  transform: translateX(10px);
}
header .theme-switch-wrapper .theme-switch input:checked + .slider {
  background-color: var(--third);
}
header .theme-switch-wrapper .theme-switch input:checked + .slider .sun-icon {
  opacity: 0;
  transform: translateX(-10px);
}
header .theme-switch-wrapper .theme-switch input:checked + .slider .moon-icon {
  opacity: 1;
  transform: translateX(0);
}
header .overlay {
  display: none;
}
@media screen and (max-width: 992px) {
  header .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 900;
  }
}
header .overlay.active {
  opacity: 1;
  visibility: visible;
}

main .hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
  overflow: hidden;
  border-radius: var(--radius);
}
main .hero-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
main .hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.295);
  z-index: 1;
}
main .hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  color: #fff;
  margin-top: 30px;
}
main .hero-section .hero-content .hero-title {
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
main .hero-section .hero-content .hero-desc {
  font-size: 0.9rem;
  text-align: center;
}
main .hero-section .hero-content .hero-counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
main .hero-section .hero-content .hero-counters .counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .hero-section .hero-content .hero-counters .counter-item .counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
main .hero-section .hero-content .hero-counters .counter-item .counter-text {
  font-size: 0.9rem;
  color: #fff;
  margin-top: 5px;
  text-align: center;
}
main .hero-section .scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  cursor: pointer;
}
main .hero-section .scroll-down .arrow {
  color: var(--main);
  opacity: 0.9;
  animation: bounceArrow 2s infinite;
}
main .hero-section .scroll-down .arrow.big {
  font-size: 2rem;
}
main .hero-section .scroll-down .arrow.small {
  font-size: 1.2rem;
  animation-delay: 0.3s;
}
@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}
@media screen and (max-width: 775px) {
  main .hero-section .hero-content {
    padding: 0 20px;
  }
  main .hero-section .hero-content .hero-title {
    font-size: 1.4rem;
  }
  main .hero-section .hero-content .hero-desc {
    font-size: 0.75rem;
  }
  main .hero-section .hero-content .hero-counters {
    gap: 15px;
  }
  main .hero-section .hero-content .hero-counters .counter-item .counter {
    font-size: 1.5rem;
  }
  main .hero-section .hero-content .hero-counters .counter-item .counter-text {
    font-size: 0.7rem;
  }
}
main .partners-section {
  position: relative;
}
main .partners-section .tree-svg {
  display: block;
  margin: 0px auto;
  max-width: 700px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  margin-bottom: -30px;
}
@media screen and (max-width: 768px) {
  main .partners-section .tree-svg {
    display: none;
    margin-bottom: 0;
  }
}
main .partners-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
main .partners-section .row .col-lg-5 {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a {
  flex: 1;
  display: flex;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 30px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card video {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
  z-index: 1;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card video {
    height: 50px;
  }
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--gray);
  z-index: 1;
  text-align: justify;
  max-width: 280px;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: all 0.3s ease;
  z-index: 1;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card .read-more i {
  transition: transform 0.3s ease;
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card .sec-arrow {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card .sec-arrow {
    flex-direction: row;
  }
  main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card .sec-arrow i {
    transform: rotate(180deg);
  }
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card:hover .read-more i {
  transform: translateX(5px);
}
main .partners-section .row .col-lg-5 .partner-card-wrapper a .partner-card:hover .read-more {
  gap: 10px;
}
main .about-section .about-text {
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  main .about-section .about-text {
    padding: 1rem;
  }
}
main .about-section .about-text .reveal-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: justify;
  overflow: hidden;
  display: inline-block;
}
main .about-section .about-text .reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
main .about-section .about-text .about-paragraph {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 1rem;
}
main .about-section .about-model {
  height: 500px;
  position: relative;
  background-color: transparent;
}
main .about-section .about-model #canvas-container {
  background-color: transparent;
  width: 100%;
  height: 100%;
}
main .about-section .about-model canvas {
  cursor: grab;
}
main .about-section .about-model canvas:active {
  cursor: grabbing;
}
main .about-section .about-model #loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
main .about-section .about-model #loading .spinner {
  border: 4px solid #333;
  border-top: 4px solid #f7941d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
main .blogs {
  position: relative;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
main .blogs .blogs-slider {
  width: 100%;
  overflow: hidden;
}
main .blogs .blogs-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
main .blogs .blogs-slider .swiper-slide {
  height: auto;
  display: flex;
  padding: 20px 0;
  min-height: 100%;
}
main .blogs .blogs-slider .card {
  background-color: var(--main2);
  border-radius: 1.25rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: start;
  width: 100%;
  min-height: 100%;
}
main .blogs .blogs-slider .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 10px rgba(239, 121, 10, 0.281);
}
main .blogs .blogs-slider .card .card-inner {
  position: relative;
  height: 18rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
main .blogs .blogs-slider .card .card-inner .imgBox {
  position: absolute;
  inset: 0;
}
main .blogs .blogs-slider .card .card-inner .imgBox img {
  width: 100%;
  height: 100%;
  filter: brightness(0.8);
}
main .blogs .blogs-slider .card .card-inner .icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 4.5rem;
  height: 4.5rem;
  background: var(--main2);
  border-top-left-radius: 50%;
  z-index: 2;
}
main .blogs .blogs-slider .card .card-inner .icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--main2);
}
main .blogs .blogs-slider .card .card-inner .icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--main2);
}
main .blogs .blogs-slider .card .card-inner .icon .iconBox {
  position: absolute;
  inset: 0.5rem;
  background: var(--main);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  text-decoration: none;
}
main .blogs .blogs-slider .card .card-inner .icon .iconBox i {
  color: #fff;
  font-size: 1.3rem;
}
main .blogs .blogs-slider .card .card-inner .icon .iconBox:hover {
  transform: scale(1.1);
}
main .blogs .blogs-slider .card .content {
  padding: 1rem 1rem 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
main .blogs .blogs-slider .card .content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}
main .blogs .blogs-slider .card .content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--gray);
  opacity: 0.7;
  flex-grow: 1;
}
main .blogs .blogs-slider .card .content .date {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.7;
  margin-top: auto;
}
  main .blogs .blogs-slider .swiper-slide a{
    width: 100% !important;
  }
@media (min-width: 1400px) {
  main .blogs .blogs-slider .swiper-slide {
    width: calc(25% - 30px) !important;
    margin-right: 15px;
  }
}
@media (max-width: 1399px) and (min-width: 1024px) {
  main .blogs .blogs-slider .swiper-slide {
    width: calc(33.333% - 30px) !important;
    margin-right: 16px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  main .blogs .blogs-slider .swiper-slide {
    width: calc(50% - 30px) !important;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  main .blogs .blogs-slider .swiper-slide {
    width: 100% !important;
  }
}
main .news-section {
  padding: 80px 0;
}
main .news-section .news-slider {
  padding: 20px 0;
}
main .news-section .news-slider .news-card {
  background-color: var(--main2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow2);
  transition: transform 0.3s ease;
  padding: 20px;
}
main .news-section .news-slider .news-card:hover {
  transform: translateY(-8px);
}
main .news-section .news-slider .news-card img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
}
main .news-section .news-slider .news-card .news-content {
  padding: 15px;
}
main .news-section .news-slider .news-card .news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}
main .news-section .news-slider .news-card .news-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}
main .news-section .news-gallery {
  margin-top: 20px;
}
main .news-section .news-gallery .swiper-slide a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
main .news-section .news-gallery .swiper-slide a img {
  width: 100%;
  height: 135px;
  transition: transform 0.3s ease;
}
main .news-section .news-gallery .swiper-slide a:hover img {
  transform: scale(1.05);
}
main .news-section .news-gallery .swiper-button-next,
main .news-section .news-gallery .swiper-button-prev {
  color: var(--main, #ef770a);
  transition: 0.3s;
}
main .news-section .news-gallery .swiper-button-next:hover,
main .news-section .news-gallery .swiper-button-prev:hover {
  color: rgb(190.0481927711, 94.6265060241, 7.9518072289);
}
main .team-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .team-section .container-fluid {
  padding-top: 8rem;
}
main .team-section .cards-wrapper {
  position: relative;
  height: 460px;
  overflow: hidden;
}
@media screen and (min-width: 575px) {
  main .team-section .cards-wrapper {
    height: 550px;
  }
}
@media screen and (max-width: 991px) {
  main .team-section .cards-wrapper {
    height: auto;
    overflow: visible;
  }
}
main .team-section .cards-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  main .team-section .cards-row {
    position: static;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
main .team-section .row {
  display: flex;
  justify-content: center;
  gap: 7rem;
  padding: 0 20px;
}
@media screen and (min-width: 1400px) {
  main .team-section .row {
    gap: 9rem;
  }
}
@media screen and (max-width: 575px) {
  main .team-section .row {
    gap: 2rem;
  }
}
main .team-section .row .team-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 575px) {
  main .team-section .row .team-card {
    max-width: 60%;
    margin: 0 auto;
  }
}
main .team-section .row .team-card .bg-shape {
  position: absolute;
  width: 90%;
  height: 70%;
  border-radius: var(--radius);
  z-index: 0;
  transition: transform 0.4s ease;
  top: 20px;
}
main .team-section .row .team-card .bg-shape.left {
  left: -30px;
  top: 60px;
  transform: rotate(-12deg);
  border-radius: var(--radius);
  height: 65%;
}
main .team-section .row .team-card .bg-shape.right {
  right: -20px;
  top: -20px;
  background: var(--third);
  transform: rotate(12deg);
}
main .team-section .row .team-card .main-card {
  position: relative;
  background: var(--main);
  border-radius: 8px;
  padding-top: 15px;
  box-shadow: 15px 0 30px 5px rgba(255, 255, 255, 0.25);
  z-index: 1;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
main .team-section .row .team-card .main-card .fav-icon {
  position: absolute;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  top: 0px;
}
main .team-section .row .team-card .main-card .person {
  width: 100%;
  border-radius: var(--radius);
  z-index: 3;
  /* height: 237px; */
}
main .team-section .row .team-card .info {
  margin-top: 30px;
  z-index: 5;
}
main .team-section .row .team-card .info h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--white);
}
main .team-section .row .team-card .info p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}
main .team-section .row .team-card:hover {
  transform: scale(1.06);
}
main .team-section .row .team-card:hover .bg-shape.left {
  transform: rotate(-12deg) translateX(20px);
}
main .team-section .row .team-card:hover .bg-shape.right {
  transform: rotate(12deg) translateY(20px);
}
main .team-section .second-row {
  justify-content: flex-start;
  margin-right: 20px;
}
main .team-section .second-row .team-card {
  opacity: 1;
  transform: none;
}
main .blog-detail {
  padding: 20px 0;
  /* Responsive */
}
main .blog-detail .blog-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
}
main .blog-detail .blog-top .blog-header {
  flex: 1;
}
main .blog-detail .blog-top .blog-header .blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--main);
}
@media (max-width: 768px) {
  main .blog-detail .blog-top .blog-header .blog-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  main .blog-detail .blog-top .blog-header .blog-title {
    font-size: 1.5rem;
  }
  main .blog-detail .blog-top .blog-header .blog-title .article-content .article-section h2 {
    font-size: 1.4rem;
    color: var(--gray);
  }
}
main .blog-detail .blog-top .blog-header p {
  color: var(--gray);
}
main .blog-detail .blog-top .blog-header .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--gray);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  main .blog-detail .blog-top .blog-header .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
}
main .blog-detail .blog-top .blog-header .blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
main .blog-detail .blog-top .blog-header .blog-meta span i {
  color: var(--third);
}
main .blog-detail .blog-top .blog-image {
  flex: 0 0 400px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
@media (max-width: 442px) {
  main .blog-detail .blog-top .blog-image {
    flex: 0 0 340px;
  }
}
main .blog-detail .blog-top .blog-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
main .blog-detail .blog-top .blog-image img:hover {
  transform: scale(1.05);
}
main .blog-detail .blog-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
}
@media (max-width: 992px) {
  main .blog-detail .blog-content {
    grid-template-columns: 1fr;
  }
}
main .blog-detail .blog-content .article-content {
  background: var(--main2);
  padding: 45px 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 44, 44, 0.2823529412);
  box-shadow: var(--box-shadow);
}
main .blog-detail .blog-content .article-content .article-section {
  margin-bottom: 40px;
}
main .blog-detail .blog-content .article-content .article-section h2 {
  font-size: 1.6rem;
  color: var(--main);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 480px) {
  main .blog-detail .blog-content .article-content .article-section h2 {
    font-size: 1.4rem;
  }
}
main .blog-detail .blog-content .article-content .article-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to left, rgba(221, 221, 221, 0.5882352941), transparent);
}
main .blog-detail .blog-content .article-content .article-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--gray);
}
main .blog-detail .blog-content .article-content .article-section ul,
main .blog-detail .blog-content .article-content .article-section ol {
  padding-right: 20px;
  margin-bottom: 20px;
  color: var(--gray);
}
main .blog-detail .blog-content .article-content .article-section ul li,
main .blog-detail .blog-content .article-content .article-section ol li {
  margin-bottom: 12px;
  line-height: 1.6;
}
main .blog-detail .blog-content .article-content .article-section ul li strong,
main .blog-detail .blog-content .article-content .article-section ol li strong {
  color: var(--white);
}
main .blog-detail .blog-content .blog-sidebar {
  background: var(--main2);
  padding: 30px 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 44, 44, 0.2823529412);
  box-shadow: var(--box-shadow);
  height: -moz-fit-content;
  height: fit-content;
}
main .blog-detail .blog-content .blog-sidebar h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
main .blog-detail .blog-content .blog-sidebar h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to left, rgba(221, 221, 221, 0.5882352941), transparent);
}
main .blog-detail .blog-content .blog-sidebar .sidebar-widget {
  margin-bottom: 40px;
}
main .blog-detail .blog-content .blog-sidebar .related-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .blog-detail .blog-content .blog-sidebar .related-posts .related-post {
  display: flex;
  gap: 15px;
  align-items: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}
main .blog-detail .blog-content .blog-sidebar .related-posts .related-post:hover {
  transform: translateX(-5px);
}
main .blog-detail .blog-content .blog-sidebar .related-posts .related-post img {
  width: 75px;
  height: 75px;
  border-radius: 12px;
}
main .blog-detail .blog-content .blog-sidebar .related-posts .related-post .related-post-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--white);
}
main .blog-detail .blog-content .blog-sidebar .related-posts .related-post .related-post-info span {
  font-size: 0.85rem;
  color: var(--gray);
}
main .blog-detail .blog-content .blog-sidebar .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main .blog-detail .blog-content .blog-sidebar .tags .tag {
  background: var(--third);
  color: var(--gray);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
main .blog-detail .blog-content .blog-sidebar .tags .tag:hover {
  background: var(--main2);
  color: var(--white);
  border: 1px solid var(--gray);
}
main .careers-section {
  padding: 60px 0;
  margin-top: 50px;
  /* responsive */
}
main .careers-section .careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
main .careers-section .career-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
main .careers-section .career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 10px rgba(239, 121, 10, 0.281);
}
main .careers-section .career-card .career-header {
  padding: 20px;
  border-bottom: var(--border);
}
main .careers-section .career-card .career-header .career-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--white);
}
main .careers-section .career-card .career-header .career-department {
  font-size: 0.95rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
main .careers-section .career-card .career-header .career-department i {
  color: var(--main);
}
main .careers-section .career-card .career-body {
  padding: 20px;
}
main .careers-section .career-card .career-body .career-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}
main .careers-section .career-card .career-body .career-info span {
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
main .careers-section .career-card .career-body .career-info span i {
  color: var(--third);
}
main .careers-section .career-card .career-body .career-description {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}
main .careers-section .career-card .career-footer {
  margin-top: auto;
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .careers-section .career-card .career-footer .career-date {
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.8;
}
main .careers-section .career-card .career-footer .career-apply-btn {
  background: var(--third);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  display: inline-flex;
  font-size: 0.8rem;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
main .careers-section .career-card .career-footer .career-apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
main .careers-section .career-card .career-footer .career-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
main .careers-section .career-card .career-footer .career-apply-btn:hover::before {
  left: 100%;
}
@media (max-width: 768px) {
  main .careers-section .careers-header .careers-title {
    font-size: 2rem;
  }
}
main .job-details {
  padding: 80px 0;
}
main .job-details .job-details-header {
  color: white;
  padding: 30px;
  margin-bottom: 30px;
}
main .job-details .job-details-header h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}
main .job-details .job-details-header .job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
main .job-details .job-details-header .job-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  color: white;
}
main .job-details .job-details-header .job-meta span i {
  color: var(--third);
}
main .job-details .job-details-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
main .job-details .job-details-content .job-info-section {
  flex: 2;
  min-width: 300px;
}
main .job-details .job-details-content .job-info-section .job-info-card,
main .job-details .job-details-content .job-info-section .job-description-card {
  background-color: var(--main2);
  filter: brightness(0.97);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}
main .job-details .job-details-content .job-info-section .job-info-card h3,
main .job-details .job-details-content .job-info-section .job-description-card h3 {
  color: var(--main);
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  position: relative;
}
main .job-details .job-details-content .job-info-section .job-info-card h3::after,
main .job-details .job-details-content .job-info-section .job-description-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to left, rgba(221, 221, 221, 0.5882352941), transparent);
}
main .job-details .job-details-content .job-info-section .job-info-card p,
main .job-details .job-details-content .job-info-section .job-description-card p {
  color: var(--gray);
  filter: brightness(1.3);
  font-size: 0.9rem;
}
main .job-details .job-details-content .job-info-section .job-info-card h4,
main .job-details .job-details-content .job-info-section .job-description-card h4 {
  color: var(--gray);
  filter: brightness(1.3);
  margin: 20px 0 10px;
}
main .job-details .job-details-content .job-info-section .job-info-card ul,
main .job-details .job-details-content .job-info-section .job-description-card ul {
  padding-right: 20px;
  margin-bottom: 15px;
}
main .job-details .job-details-content .job-info-section .job-info-card ul li,
main .job-details .job-details-content .job-info-section .job-description-card ul li {
  position: relative;
  margin-bottom: 8px;
  color: var(--gray);
  opacity: 0.8;
}
main .job-details .job-details-content .job-info-section .job-info-card ul li::before,
main .job-details .job-details-content .job-info-section .job-description-card ul li::before {
  content: "•";
  position: absolute;
  right: -20px;
  top: 0;
  color: var(--third);
  font-size: 2rem;
  line-height: 1.2;
}
main .job-details .job-details-content .job-info-section .job-info-card .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
main .job-details .job-details-content .job-info-section .job-info-card .info-grid .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
main .job-details .job-details-content .job-info-section .job-info-card .info-grid .info-item i {
  background: var(--main);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
main .job-details .job-details-content .job-info-section .job-info-card .info-grid .info-item h4 {
  margin: 0 0 5px;
  font-size: 1rem;
  color: var(--white);
}
main .job-details .job-details-content .job-info-section .job-info-card .info-grid .info-item p {
  color: var(--gray);
  filter: brightness(1.3);
  font-size: 0.9rem;
}
main .job-details .job-details-content .application-form-section {
  flex: 1;
  min-width: 300px;
}
main .job-details .job-details-content .application-form-section .application-form-card {
  background-color: var(--main2);
  filter: brightness(0.97);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 20px;
}
main .job-details .job-details-content .application-form-section .application-form-card h3 {
  color: var(--main);
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  position: relative;
}
main .job-details .job-details-content .application-form-section .application-form-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to left, var(--gray), transparent);
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group {
  flex: 1;
  margin-bottom: 15px;
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group.full-width {
  flex: 0 0 100%;
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group input,
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--bg);
  color: var(--white);
  transition: border-color 0.3s;
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group input:focus,
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group select:focus {
  outline: none;
  border-color: var(--main);
  box-shadow: 0 0 0 2px rgba(var(--main), 0.3);
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group input option,
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group select option {
  background: var(--main2);
  color: var(--white);
  padding: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group input option:hover,
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group select option:hover {
  background: var(--main);
  color: var(--white);
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group .custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group .custom-file input[type=file] {
  display: none;
}
main .job-details .job-details-content .application-form-section .application-form-card .application-form .form-group .custom-file-label {
  display: inline-block;
  padding: 12px 20px;
  background: var(--bg);
  color: var(--white);
  border: var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  transition: 0.3s ease;
  width: 100%;
}
@media (max-width: 768px) {
  main .job-details .job-details-container .job-details-header {
    padding: 20px;
  }
  main .job-details .job-details-container .job-details-header h1 {
    font-size: 1.8rem;
  }
  main .job-details .job-details-container .job-details-header .job-meta {
    flex-direction: column;
    gap: 10px;
  }
  main .job-details .job-details-container .job-details-header .job-meta span {
    width: -moz-fit-content;
    width: fit-content;
  }
  main .job-details .job-details-container .job-details-content {
    flex-direction: column;
  }
}
main .contact-sec {
  padding: 60px 0;
}
main .contact-sec h2 {
  color: var(--white);
  text-align: center;
}
main .contact-sec .side-box {
  background: var(--main2);
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
  padding: 1rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
}
main .contact-sec .side-box h6 {
  font-weight: 600;
  color: var(--main);
}
main .contact-sec .side-box p {
  color: var(--gray);
}
main .contact-sec .side-box:hover {
  background: var(--bg);
  transform: translateY(-3px);
}
main .contact-sec .side-box.active {
  border: var(--border);
  box-shadow: 0 3px 8px rgba(239, 121, 10, 0.171);
  background-color: var(--bg);
}
main .contact-sec .contact-form {
  background: var(--main2);
  border-radius: 15px;
  padding: 2rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
}
main .contact-sec .contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--main);
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
main .contact-sec .contact-form label {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}
main .contact-sec .contact-form .form-control,
main .contact-sec .contact-form .form-select {
  background: var(--bg);
  color: var(--white);
  border-radius: 8px;
  border: var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
main .contact-sec .contact-form .form-control:focus,
main .contact-sec .contact-form .form-select:focus {
  border-color: var(--main);
  box-shadow: var(--box-shadow);
  background: var(--bg);
}
main .contact-sec .contact-form .form-control option,
main .contact-sec .contact-form .form-select option {
  background: var(--main2);
  color: var(--white);
  padding: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}
main .contact-sec .contact-form .form-control option:hover,
main .contact-sec .contact-form .form-select option:hover {
  background: var(--main);
  color: var(--white);
}
main .faq-section {
  position: relative;
  padding: 3rem 0;
}
main .faq-section h2 {
  color: var(--white);
}
main .faq-section .faq-box .faq-content {
  position: relative;
  z-index: 2;
}
main .faq-section .faq-box .faq-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
main .faq-section .faq-box .faq-content a {
  text-decoration: none;
  width: 40%;
  background-color: var(--main);
  color: white;
}
@media screen and (max-width: 768px) {
  main .faq-section .faq-box .faq-content a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main .faq-section .faq-box .faq-content {
    text-align: center;
  }
}
main .faq-section .faq-box .accordion {
  position: relative;
  z-index: 2;
}
main .faq-section .faq-box .accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(126, 94, 65, 0.253);
}
main .faq-section .faq-box .accordion .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(126, 94, 65, 0.418);
  background-color: var(--main2);
}
main .faq-section .faq-box .accordion .accordion-item .accordion-button {
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s;
  text-align: right;
  padding: 1.2rem 1.5rem;
  background: var(--main2);
}
main .faq-section .faq-box .accordion .accordion-item .accordion-button:not(.collapsed) {
  background: var(--main2);
  color: var(--white);
  box-shadow: none;
}
main .faq-section .faq-box .accordion .accordion-item .accordion-button:hover {
  background: var(--box-shadow);
  color: var(--white);
}
main .faq-section .faq-box .accordion .accordion-item .accordion-button i {
  color: var(--main);
  transition: all 0.3s;
  margin-left: 10px;
}
main .faq-section .faq-box .accordion .accordion-item .accordion-button::after {
  margin-left: 0;
  margin-right: auto;
  color: var(--white);
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
main .faq-section .faq-box .accordion .accordion-item .accordion-body {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  padding: 1.2rem 1.5rem;
  background: var(--main2);
  border-top: 1px solid rgba(239, 119, 10, 0.05);
}
main .main-banner {
  min-height: 100vh;
  background: url("../images/logistic.png") no-repeat center center/cover;
}
main .main-banner .careers-header {
  padding: 150px 20px 100px 20px;
}
main .main-banner .careers-header p {
  text-align: justify;
}
main .main-banner .goals-wrapper {
  position: relative;
  height: 5em;
  overflow: hidden;
}
main .main-banner .goals-wrapper .goals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  main .main-banner .goals-wrapper .goals-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  main .goals-wrapper {
    overflow: visible !important;
    height: auto !important;
  }
}
main .capital {
  background: url("../images/capital.png") no-repeat center center/cover;
}
main .about-us {
  padding-top: 10rem;
  top: 0;
  /* Responsive */
}
main .about-us.tech {
  position: relative;
  background-color: var(--bg);
}
main .about-us.tech .text {
  padding: 0 50px;
}
@media screen and (max-width: 576px) {
  main .about-us.tech .text {
    padding: 0;
    text-align: center;
  }
}
main .about-us.tech .text h1,
main .about-us.tech .text h2 {
  color: var(--white);
}
main .about-us.tech .text h1::after,
main .about-us.tech .text h2::after {
  background: var(--white);
}
main .about-us.tech .text p,
main .about-us.tech .text ul li {
  color: var(--gray);
}
main .about-us.tech .text ul li i {
  color: var(--main);
}
main .about-us.tech .image-side {
  width: 100%;
  height: 100%;
  background: url("../images/logistic.png") no-repeat center center/cover;
  border-radius: 0;
  position: relative;
}
@media screen and (min-width: 992px) {
  main .about-us.tech .image-side {
    min-height: 600px;
  }
}
main .about-us.tech .image-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.199);
}
main .about-us.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wave);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
main .about-us.creative {
  position: relative;
}
main .about-us.creative .text {
  padding: 50px;
}
@media screen and (max-width: 576px) {
  main .about-us.creative .text {
    padding: 0;
    text-align: center;
  }
}
main .about-us.creative .text h1,
main .about-us.creative .text h2 {
  color: var(--white);
}
main .about-us.creative .text h1::after,
main .about-us.creative .text h2::after {
  background: var(--white);
}
main .about-us.creative .text p,
main .about-us.creative .text ul li {
  color: var(--gray);
}
main .about-us.creative .text ul li i {
  color: var(--main);
}
main .about-us.creative .image-side {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: url("../images/about.png") no-repeat center center/cover;
  border-radius: 0;
  position: relative;
}
main .about-us.creative .image-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
main .about-us.creative .stats {
  background-color: rgba(217, 222, 227, 0.3019607843);
  padding: 20px;
  border-radius: var(--radius);
}
main .about-us.creative .stats h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--main);
}
main .about-us.creative .stats p {
  color: var(--gray);
  margin: 0;
}
main .about-us.creative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  main .about-us .text {
    text-align: center;
    padding: 0;
  }
  main .about-us .text h1::after,
  main .about-us .text h2::after {
    right: 50%;
    transform: translateX(50%);
  }
  main .about-us .image-side {
    min-height: 300px;
  }
}
@media screen and (max-width: 576px) {
  main .about-us .text h1,
  main .about-us .text h2 {
    font-size: 28px;
  }
  main .about-us .text p {
    font-size: 15px;
  }
  main .about-us .text ul li {
    font-size: 14px;
  }
  main .about-us .image-side {
    min-height: 220px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
main .services {
  padding: 60px 0;
  text-align: center;
}
main .services h2 {
  color: var(--white);
  text-align: center;
}
main .services .allServices {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
main .services .allServices .serviceItem {
  position: relative;
  flex: 1 32%;
  min-width: 300px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background-color: var(--bg);
  box-shadow: var(--box-shadow);
  padding: 60px 40px;
  border-radius: var(--radius);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .services .allServices .serviceItem .card-decor {
  position: absolute;
  filter: var(--filter);
  width: 100%;
  opacity: 0.01;
  -o-object-fit: contain;
     object-fit: contain;
}
main .services .allServices .serviceItem .serviceIcon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  border-radius: 50%;
}
main .services .allServices .serviceItem .serviceIcon img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .services .allServices .serviceItem .title {
  line-height: 1;
  font-weight: 600;
  color: var(--white);
}
main .services .allServices .serviceItem .serviceList {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 16px;
  border-radius: 24px;
  background-color: var(--main2);
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
main .services .allServices .serviceItem .serviceList span {
  min-width: calc(50% - 8px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0;
  filter: brightness(0.8);
  text-align: start;
}
main .services .allServices .serviceItem .serviceList span i {
  color: var(--main);
}
main .services .allServices .serviceItem:hover .serviceList {
  animation: subMove 0.5s forwards;
}
@keyframes subMove {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
main .services .allServices .serviceItem:hover .serviceList span {
  animation: fade-in 0.5s ease-in-out forwards;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(1) {
  animation-delay: 0.15s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(2) {
  animation-delay: 0.3s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(3) {
  animation-delay: 0.45s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(4) {
  animation-delay: 0.6s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(5) {
  animation-delay: 0.75s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(6) {
  animation-delay: 0.9s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(7) {
  animation-delay: 1.05s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(8) {
  animation-delay: 1.2s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(9) {
  animation-delay: 1.35s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(10) {
  animation-delay: 1.5s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(11) {
  animation-delay: 1.65s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(12) {
  animation-delay: 1.8s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(13) {
  animation-delay: 1.95s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(14) {
  animation-delay: 2.1s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(15) {
  animation-delay: 2.25s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(16) {
  animation-delay: 2.4s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(17) {
  animation-delay: 2.55s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(18) {
  animation-delay: 2.7s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(19) {
  animation-delay: 2.85s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(20) {
  animation-delay: 3s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(21) {
  animation-delay: 3.15s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(22) {
  animation-delay: 3.3s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(23) {
  animation-delay: 3.45s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(24) {
  animation-delay: 3.6s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(25) {
  animation-delay: 3.75s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(26) {
  animation-delay: 3.9s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(27) {
  animation-delay: 4.05s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(28) {
  animation-delay: 4.2s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(29) {
  animation-delay: 4.35s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(30) {
  animation-delay: 4.5s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(31) {
  animation-delay: 4.65s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(32) {
  animation-delay: 4.8s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(33) {
  animation-delay: 4.95s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(34) {
  animation-delay: 5.1s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(35) {
  animation-delay: 5.25s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(36) {
  animation-delay: 5.4s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(37) {
  animation-delay: 5.55s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(38) {
  animation-delay: 5.7s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(39) {
  animation-delay: 5.85s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(40) {
  animation-delay: 6s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(41) {
  animation-delay: 6.15s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(42) {
  animation-delay: 6.3s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(43) {
  animation-delay: 6.45s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(44) {
  animation-delay: 6.6s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(45) {
  animation-delay: 6.75s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(46) {
  animation-delay: 6.9s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(47) {
  animation-delay: 7.05s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(48) {
  animation-delay: 7.2s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(49) {
  animation-delay: 7.35s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(50) {
  animation-delay: 7.5s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(51) {
  animation-delay: 7.65s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(52) {
  animation-delay: 7.8s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(53) {
  animation-delay: 7.95s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(54) {
  animation-delay: 8.1s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(55) {
  animation-delay: 8.25s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(56) {
  animation-delay: 8.4s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(57) {
  animation-delay: 8.55s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(58) {
  animation-delay: 8.7s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(59) {
  animation-delay: 8.85s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(60) {
  animation-delay: 9s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(61) {
  animation-delay: 9.15s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(62) {
  animation-delay: 9.3s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(63) {
  animation-delay: 9.45s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(64) {
  animation-delay: 9.6s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(65) {
  animation-delay: 9.75s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(66) {
  animation-delay: 9.9s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(67) {
  animation-delay: 10.05s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(68) {
  animation-delay: 10.2s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(69) {
  animation-delay: 10.35s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(70) {
  animation-delay: 10.5s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(71) {
  animation-delay: 10.65s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(72) {
  animation-delay: 10.8s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(73) {
  animation-delay: 10.95s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(74) {
  animation-delay: 11.1s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(75) {
  animation-delay: 11.25s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(76) {
  animation-delay: 11.4s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(77) {
  animation-delay: 11.55s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(78) {
  animation-delay: 11.7s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(79) {
  animation-delay: 11.85s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(80) {
  animation-delay: 12s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(81) {
  animation-delay: 12.15s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(82) {
  animation-delay: 12.3s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(83) {
  animation-delay: 12.45s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(84) {
  animation-delay: 12.6s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(85) {
  animation-delay: 12.75s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(86) {
  animation-delay: 12.9s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(87) {
  animation-delay: 13.05s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(88) {
  animation-delay: 13.2s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(89) {
  animation-delay: 13.35s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(90) {
  animation-delay: 13.5s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(91) {
  animation-delay: 13.65s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(92) {
  animation-delay: 13.8s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(93) {
  animation-delay: 13.95s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(94) {
  animation-delay: 14.1s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(95) {
  animation-delay: 14.25s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(96) {
  animation-delay: 14.4s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(97) {
  animation-delay: 14.55s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(98) {
  animation-delay: 14.7s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(99) {
  animation-delay: 14.85s;
}
main .services .allServices .serviceItem:hover .serviceList span:nth-child(100) {
  animation-delay: 15s;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
main .paths {
  padding: 40px 0;
  overflow: hidden;
}
main .paths h2 {
  color: var(--white);
  text-align: center;
}
main .paths .header {
  color: var(--white);
  padding: 40px;
  text-align: center;
}
main .paths .header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}
main .paths .path-section {
  padding: 0px 40px;
  display: block;
  min-height: 80vh;
}
main .paths .path-section .path-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
main .paths .path-section .path-header .path-icon {
  width: 80px;
  height: 80px;
  background: var(--main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  flex-shrink: 0;
}
main .paths .path-section .path-header .path-icon i {
  font-size: 2.5rem;
  color: white;
}
main .paths .path-section .path-header .path-title {
  font-size: 2.2rem;
  color: var(--white);
}
main .paths .path-section .path-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  background-color: rgba(217, 222, 227, 0.1450980392);
  padding: 20px;
  border-radius: var(--radius);
}
@media (max-width: 992px) {
  main .paths .path-section .path-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
main .paths .path-section .path-content .path-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white);
}
main .paths .path-section .path-content .path-text p {
  margin-bottom: 20px;
}
main .paths .path-section .path-content .path-features {
  margin-top: 30px;
}
main .paths .path-section .path-content .path-features li {
  margin-bottom: 15px;
  position: relative;
  padding-right: 25px;
  color: var(--gray);
}
main .paths .path-section .path-content .path-features li::before {
  content: "•";
  color: var(--third);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: -3px;
}
main .paths .logos-container {
  background-color: var(--main2);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  border: var(--border);
}
main .paths .logos-container .logos-title {
  font-size: 1.2rem;
  color: var(--main);
  margin-bottom: 20px;
  font-weight: 600;
}
main .paths .logos-container .logos-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  main .paths .logos-container .logos-grid {
    display: flex;
    flex-wrap: wrap;
  }
}
main .paths .logos-container .logos-grid img {
  height: 45px;
  filter: var(--filter);
  transition: all 0.3s ease;
}
main .paths .logos-container .logos-grid img:hover{
    filter: grayscale(0);
    opacity: 1;
}

main .paths .decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.03;
  font-size: 15rem;
  color: var(--main);
}
@media (max-width: 900px) {
  main .paths .path-content {
    grid-template-columns: 1fr;
  }
  main .paths .logos-container {
    order: -1;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  main .paths .header {
    padding: 40px 20px;
  }
  main .paths .header h1 {
    font-size: 2.2rem;
  }
  main .paths .path-section {
    padding: 0px 20px;
    display: block;
  }
  main .paths .path-section .path-header {
    flex-direction: column;
    text-align: center;
  }
  main .paths .path-section .path-header .path-icon {
    margin-left: 0;
    margin-bottom: 20px;
  }
  main .paths .path-section .path-header .path-title {
    font-size: 1.8rem;
  }
  main .paths .path-section .logos-grid {
    grid-template-columns: 1fr;
  }
}
main .confirmedCourses {
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}
main .confirmedCourses .servicesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  perspective: 1500px;
}
main .confirmedCourses .servicesGrid .flipCard {
  position: relative;
  width: 100%;
  height: 400px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  cursor: pointer;
}
main .confirmedCourses .servicesGrid .flipCard:hover {
  transform: rotateY(180deg);
}
main .confirmedCourses .servicesGrid .flipCard .cardFront,
main .confirmedCourses .servicesGrid .flipCard .cardBack {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}
main .confirmedCourses .servicesGrid .flipCard .cardFront {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .confirmedCourses .servicesGrid .flipCard .cardFront .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
main .confirmedCourses .servicesGrid .flipCard .cardFront .overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}
main .confirmedCourses .servicesGrid .flipCard .cardFront .overlay p {
  font-size: 1.1rem;
  color: #f1f1f1;
}
main .confirmedCourses .servicesGrid .flipCard .cardBack {
  background-color: rgba(109, 120, 129, 0.2941176471);
  box-shadow: var(--box-shadow);
  transform: rotateY(180deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .confirmedCourses .servicesGrid .flipCard .cardBack h4 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-align: center;
  color: var(--main);
}
main .confirmedCourses .servicesGrid .flipCard .cardBack ul {
  list-style: none;
  padding: 0;
}
main .confirmedCourses .servicesGrid .flipCard .cardBack ul li {
  position: relative;
  padding-right: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
}
main .confirmedCourses .servicesGrid .flipCard .cardBack ul li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--main);
  font-weight: bold;
}
@media (max-width: 1200px) {
  main .confirmedCourses .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  main .confirmedCourses .servicesGrid {
    grid-template-columns: 1fr;
  }
  main .confirmedCourses .sectionTitle {
    font-size: 2rem;
  }
}
main .gallery {
  padding: 40px 0;
  text-align: center;
}
main .gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
main .gallery .gallery-grid .main {
  grid-row: span 2;
}
main .gallery .gallery-grid .item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
main .gallery .gallery-grid .item img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease, filter 0.4s ease;
}
main .gallery .gallery-grid .item img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
main .clients-section {
  color: var(--white);
  text-align: center;
  padding: 40px 0;
}
main .clients-section .client-logo {
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
main .clients-section .client-logo img {
  max-width: 100%;
  height: 50px;
  filter: var(--filter);
  opacity: 0.6;
  transition: all 0.3s ease;
}
main .clients-section .client-logo:hover {
  transform: translateY(-5px);
}
main .clients-section .client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
main .clients-section .btn-custom {
  background: var(--third);
  color: white;
  padding: 10px 25px;
  border-radius: var(--radius);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
main .clients-section .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
main .clients-section .btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}
main .clients-section .btn-custom:hover::before {
  left: 100%;
}
main .clients-section .btn-custom i {
  font-size: 14px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}
main .clients-section .btn-custom:hover i {
  transform: translate(2px, -2px);
}
main .contact-section {
  color: var(--white);
  margin: 0 auto !important;
}
main .contact-section .contact-info {
  text-align: center;
  margin-bottom: 40px;
}
main .contact-section .contact-info h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--gray);
}
main .contact-section .contact-info .info-card {
  background-color: var(--third);
  border-radius: 15px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  overflow: hidden;
}
main .contact-section .contact-info .info-card .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--main2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
main .contact-section .contact-info .info-card .text {
  text-align: start;
  flex: 1;
}
main .contact-section .contact-info .info-card .text h6 {
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.9rem;
  color: #fff;
}
main .contact-section .contact-info .info-card .text p {
  margin: 0;
  color: #ddd;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
}
main .contact-section .contact-info .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
main .contact-section .contact-info .col-md-4:nth-child(1) .info-card {
  background: var(--third);
}
main .contact-section .contact-info .col-md-4:nth-child(2) .info-card {
  background: var(--third);
}
main .contact-section .contact-info .col-md-4:nth-child(3) .info-card {
  background: var(--third);
}
main .contact-section .contact-info .col-md-4:nth-child(1) i {
  color: var(--white);
}
main .contact-section .contact-info .col-md-4:nth-child(2) i {
  color: var(--white);
}
main .contact-section .contact-info .col-md-4:nth-child(3) i {
  color: var(--white);
}
main .contact-section .contact-info .col-md-4:nth-child(4) i {
  color: var(--white);
}
@media (max-width: 576px) {
  main .contact-section .contact-info .info-card {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  main .contact-section .contact-info .info-card .icon-box {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  main .contact-section .contact-info .info-card i {
    font-size: 0.8rem;
  }
  main .contact-section .contact-info .info-card .text h6 {
    font-size: 0.85rem;
    color: var(--white);
  }
  main .contact-section .contact-info .info-card .text p {
    font-size: 0.75rem;
  }
}
main .contact-section .contact-form {
  background: var(--bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}
main .contact-section .contact-form .form-control {
  background: var(--inputstrock);
  border-radius: 8px;
  padding: 12px;
  border: var(--border);
  transition: 0.3s;
}
main .contact-section .contact-form .form-control::-moz-placeholder {
  color: var(--white);
}
main .contact-section .contact-form .form-control::placeholder {
  color: var(--white);
}
main .contact-section .contact-form .form-control:focus {
  border-color: var(--main);
  background: var(--black);
  box-shadow: none;
}
main .contact-section .contact-form .btn-custom {
  background: var(--third);
  color: white;
  padding: 10px 25px;
  border-radius: var(--radius);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
main .contact-section .contact-form .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
main .contact-section .contact-form .btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}
main .contact-section .contact-form .btn-custom:hover::before {
  left: 100%;
}
main .contact-section .dark-map {
  width: 100%;
  height: 300px;
}
main .mission-vision {
  padding: 60px 20px;
  display: block;
}
main .mission-vision .cardd {
  display: flex;
  align-items: center;
  background: var(--bg);
  margin: 40px auto;
  padding: 0px 0px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  position: relative;
}
@media (max-width: 768px) {
  main .mission-vision .cardd {
    flex-direction: column;
    width: 90%;
  }
}
main .mission-vision .cardd.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  main .mission-vision .cardd.reverse {
    flex-direction: column;
  }
}
main .mission-vision .cardd.reverse .content {
  text-align: left;
}
@media (max-width: 768px) {
  main .mission-vision .cardd.reverse .content {
    text-align: center;
  }
}
main .mission-vision .cardd .circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* مهم جدًا علشان الصورة ما تطلعش برا الدايرة */
  background: var(--black);
}
@media (max-width: 768px) {
  main .mission-vision .cardd .circle {
    width: 120px;
    height: 120px;
    margin: 10px 0;
  }
}
main .mission-vision .cardd .circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* يخلّي الصورة تملأ الدايرة بالكامل */
  border-radius: 50%; /* يضمن إن الصورة تاخد شكل الدايرة تمامًا */
}
main .mission-vision .cardd .content {
  flex: 1;
  text-align: right;
  padding: 0 70px;
}
@media (max-width: 768px) {
  main .mission-vision .cardd .content {
    text-align: center;
    padding: 0 10px;
  }
}
main .mission-vision .cardd .content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--white);
}
main .mission-vision .cardd .content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
}
main .reviews-section .row {
  position: relative;
  padding: 100px 20px;
}
main .reviews-section .row .shape {
  position: absolute;
  bottom: -2px;
  right: -13px;
  width: 400px;
  height: auto;
  z-index: 1;
}
main .reviews-section .quote-icon {
  font-size: 40px;
  color: var(--main);
  margin-bottom: 12px;
}
main .reviews-section .reviews-header .reviews-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .reviews-section .reviews-header .reviews-nav .btn-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: var(--border);
  background: var(--white);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}
main .reviews-section .reviews-header .reviews-nav .btn-nav i {
  font-size: 14px;
  color: var(--black);
}
main .reviews-section .reviews-header .reviews-nav .btn-nav:hover {
  background: var(--main);
  border-color: var(--main);
}
main .reviews-section .reviews-header .reviews-nav .btn-nav:hover i {
  color: var(--white);
}
main .reviews-section .reviews-slider .swiper-slide {
  height: auto;
  padding: 10px;
}
main .reviews-section .review-card {
  background-color: var(--bg);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
main .reviews-section .review-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
main .reviews-section .review-card .stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
main .reviews-section .review-card .company {
  font-weight: 700;
  color: var(--white);
}
main .reviews-section .swiper-pagination {
  margin-top: 18px;
  position: relative;
  text-align: center;
}
main .reviews-section .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background: #cfd6dc;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}
main .reviews-section .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--third);
  width: 36px;
}
main .values-section {
  width: 100%;
  padding: 30px 5%;
  display: flex;
  justify-content: center;
}
main .values-section .values-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  position: relative;
  border-radius: var(--radius);
}
main .values-section .values-grid .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
  align-items: flex-start;
}
main .values-section .values-grid .row .title-card {
  flex: 1 1 30%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}
main .values-section .values-grid .row .title-card p.subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  opacity: 0.8;
}
main .values-section .values-grid .row .value-item {
  flex: 1 1 30%;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg);
  padding: 0px 25px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  transition: transform 0.5s ease;
  min-height: 150px;
}
main .values-section .values-grid .row .value-item:hover {
  transform: translateY(-10px);
}
main .values-section .values-grid .row .value-item .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}
main .values-section .values-grid .row .value-item .content {
  display: flex;
  flex-direction: column;
}
main .values-section .values-grid .row .value-item .content h3 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: var(--white);
  font-weight: 600;
}
main .values-section .values-grid .row .value-item .content p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.7;
  margin: 0;
  color: var(--gray);
}

footer {
  background: var(--bg);
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: end;
  z-index: 1;
}
footer .footer-content {
  margin-bottom: 40px;
}
footer .footer-section {
  margin-bottom: 30px;
}
footer .footer-section .footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
footer .footer-section .footer-logo:hover {
  transform: scale(1.05);
}
footer .footer-section .footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}
footer .footer-title {
  font-size: 18px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: var(--white);
}
footer .footer-title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 5px;
  width: 12px;
  height: 5px;
  background: var(--third);
  border-radius: 40%;
  z-index: 11;
}
footer .footer-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: width 0.4s ease;
}
footer .footer-title:hover::before {
  animation: moveCircle 1.3s forwards;
}
footer .footer-title:not(:hover)::before {
  animation: moveCircleReverse 1.3s forwards;
}
footer .footer-links,
footer .footer-contact {
  list-style: none;
  padding: 0;
}
footer .footer-links li,
footer .footer-contact li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-links li:hover,
footer .footer-contact li:hover {
  transform: translateX(5px);
}
footer .footer-links li a,
footer .footer-contact li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
footer .footer-links li a:hover,
footer .footer-contact li a:hover {
  color: var(--main);
}
footer .footer-links li i,
footer .footer-contact li i {
  margin-left: 8px;
  color: var(--gray);
  font-size: 16px;
}
footer .footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
footer .footer-social .social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 30%;
  transition: all 0.3s ease;
  text-decoration: none;
}
footer .footer-social .social-link::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 5px;
  background: var(--third);
  border-radius: 40%;
  transition: all 0.6s ease;
  z-index: 10;
}
footer .footer-social .social-link:hover::after {
  width: 60%;
}
footer .footer-bottom {
  border-top: var(--border);
  padding-top: 20px;
}
footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-bottom .footer-bottom-content p {
  color: var(--gray);
  margin: 0;
}
footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 20px;
}
footer .footer-bottom .footer-bottom-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}
footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--main);
}
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-bottom .footer-bottom-links {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */