@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("/front/fonts/Cairo-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
body {
  background-color: #010101;
  color: #b3b3b2;
}

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

a {
  text-decoration: none;
  color: #b3b3b2;
  display: inline-block;
  padding: 4px;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #e6e6e6;
}

h1,
h2,
h3,
h4,
h5 {
  color: #ffffff !important;
}

.mw-500 {
  max-width: 500px;
}

.text-primary {
  color: #f47647 !important;
}

.border-light {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.border-dark {
  border: 2px solid #1f1f1f !important;
  border-radius: 2rem;
  padding: 2rem;
}

.fa-arrow-up {
  rotate: 45deg;
}

.heading--icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ar .ms-auto {
  margin-left: unset !important;
  margin-right: auto !important;
}

.bg-tech {
  background-image: url(/front/images/home/features-bg.png);
  background-size: cover;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Cairo", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
}

h1 {
  font-size: 9rem;
}

h2 {
  font-size: 4rem;
}

.h2 {
  font-size: 6.4rem;
}

.h3 {
  font-size: 3rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.6rem;
}

p {
  font-size: 1.8rem;
}

.heading {
  border: 2px solid #1f1f1f;
  padding: 4rem;
  border-radius: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}
.heading h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.heading--center {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6rem;
}
.heading--center h2 {
  text-transform: uppercase;
}

.text-lg {
  font-size: 2rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 600px) {
  .h2 {
    font-size: 4rem;
  }
}
/* ******** NAVBAR start */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
nav li a {
  color: var(--secondry-font-color);
  font-size: 18px;
  transition: 0.2s;
  padding: 15px 25px;
}
nav li a:hover {
  color: var(--main-font-color);
  opacity: 0.8;
}
nav .active-link {
  color: var(--main-font-color);
  border-radius: 10px;
  background: #141414;
  border: 1px solid #333;
}

.nav--menu {
  background-color: rgba(0, 0, 0, 0.7529411765);
  border-radius: 2rem;
  margin-top: 0.4rem;
  padding: 1rem 2rem;
  align-items: center;
}

.nav-links {
  margin-bottom: 0;
}

.nav-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 100%);
}

.logo img {
  width: 80px;
}

.contact-btn {
  padding: 10px 22px;
  background: var(--brand-color);
  border-radius: 7px;
  color: var(--main-font-color);
  font-weight: 500;
  transition: 0.2s;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 4px;
  margin: 4px;
  background: #f47647;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  height: 100%;
  width: 320px;
  background: #111;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 1000;
}

.mobile-menu.active {
  left: 0;
}

.close-btn {
  font-size: 35px;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: right;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
}

.mobile-links a {
  font-size: 16px;
}

.mobile-contact-btn {
  display: inline-block;
  margin: 3rem;
  padding: 10px 20px;
  background: #f47647;
  border-radius: 7px;
  color: #e6e6e6;
}
.mobile-contact-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

/* ******** NAVBAR end */
@media (max-width: 992px) {
  ul.nav-links,
  nav .btn-primary {
    display: none !important;
  }
  .menu-icon {
    display: block;
  }
}
.footer--pre-img {
  width: 100%;
  min-height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.copywrite {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem;
  margin: 3rem 0;
  border-radius: 1rem;
}
.copywrite--container {
  color: #ffffff;
  background-color: rgba(244, 117, 71, 0.4);
  padding: 1rem 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  gap: 1.6rem;
}
.copywrite--content {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.copywrite--content img {
  height: 2rem;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 2.6rem;
}
.social-media i {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.social-media i:hover {
  color: #f47647;
}

@media screen and (max-width: 768px) {
  .copywrite--container {
    flex-direction: column;
    gap: 1.6rem;
    justify-content: center;
    align-items: center;
    padding: 3rem 3rem 2rem;
  }
  .copywrite--content {
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
  }
  .copywrite--content img {
    height: 4rem;
  }
}
.btn {
  padding: 1.4rem 2.4rem;
  font-size: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.btn-lg {
  padding: 2.4rem 3rem;
}
.btn-primary {
  background-color: #f47647;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #333333;
  color: #f47647;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary {
  background-color: #141414;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #333333;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover .fa-arrow-up {
  transform: rotate(45deg);
}
.btn .fa-arrow-up {
  transition: transform 0.3s ease-in-out;
}
.btn-icon {
  border: none;
  color: #b3b3b2;
  padding: 0;
}
.btn-icon:hover {
  color: #ffffff;
}
.btn-icon:hover .icon {
  background-color: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
}

.icon {
  width: 5.4rem;
  height: 5.4rem;
  color: #e7beb1;
  background-color: #141414;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  padding: 0.8rem;
  transition: transform 0.3s ease-in-out;
}
.icon-md {
  width: 6.6rem;
  height: 6.6rem;
  font-size: 2rem;
}
.icon-lg {
  width: 7rem;
  height: 7rem;
  font-size: 2.4rem;
}
.icon-rounded {
  border-radius: 1.2rem;
}

.ar .btn-icon {
  flex-direction: row-reverse;
}
.ar .btn-icon:hover .icon {
  transform: rotate(-45deg);
}
.ar .btn-secondary {
  background-color: #141414;
  color: #ffffff;
}
.ar .btn-secondary:hover {
  background-color: #333333;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ar .btn-secondary:hover .fa-arrow-up {
  transform: rotate(-90deg);
}
.ar .btn .icon {
  flex-direction: row-reverse;
}
.ar .btn .fa-arrow-up {
  transform: rotate(-45deg);
  rotate: unset;
}

.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
.swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-color: $color-white;
  --bs-accordion-border-color: $color-gray-50;
  --bs-accordion-btn-color: $color-white;
  --bs-accordion-body-padding-x: 2rem;
  --bs-accordion-body-padding-y: 2rem;
  --bs-accordion-active-color: $color-white;
  --bs-accordion-active-bg: $color-gray-50;
  --bs-accordion-active-border-color: $color-gray-50;
}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding: 2rem 0;
  box-shadow: none !important;
}
.accordion-button.collapsed i {
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}
.accordion-button i {
  transition: all 0.3s ease-in-out;
  transform: rotate(0deg);
  font-size: 1.6rem;
}
.accordion-button::after {
  content: none;
}

.hero {
  min-height: 60vh;
  padding-top: 10rem;
  /* background-image: url(/front/images/hero-bg.png); */
  background-image: url("/front/images/hero-bg.png");
  background-size: cover;
  background-position: bottom left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
  gap: 4rem;
}
.hero--content {
  max-width: 100rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.hero--content p {
  max-width: 83rem;
  font-size: 1.8rem;
}
.hero--stars {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: linear-gradient(90deg, rgba(255, 83, 31, 0.134), rgba(255, 83, 31, 0.045));
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50rem;
  font-size: 1.2rem;
}
.hero--stars p {
  font-size: 1.4rem;
}
.hero--cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}
.hero--cta .btn-secondary {
  padding: 2.4rem 3rem;
}
.hero--cta .btn-users {
  padding: 0.9rem 1.6rem 0.9rem 4rem;
  border-radius: 20rem;
  gap: 1rem;
}
.hero--cta .btn-users:hover {
  cursor: unset;
}
.hero--cta img {
  margin-left: -2.5rem;
}
.hero--analytics {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0), rgba(1, 1, 1, 0.662745098), #010101);
}
.hero--analytics-item {
  padding: 4rem 3.4rem;
  flex-grow: 1;
  border: 1px solid #1f1f1f;
  border-bottom: none;
  font-weight: 300;
}
.hero--analytics .number {
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.ar .hero--stars {
  text-align: right;
}

.home .hero,
.ar .home .hero {
  min-height: 100vh;
  justify-content: flex-end;
  align-items: center;
}
.home .hero--content,
.ar .home .hero--content {
  align-items: center;
  text-align: center;
}

.about--content {
  max-width: 85%;
  margin: auto;
}
.about--content h2 {
  font-size: 2.4rem;
  font-weight: 300;
}
.about--content p {
  font-size: 2.8rem;
  color: #ffffff;
}

.timeline--item {
  color: #ffffff;
}
.timeline--item .year {
  font-size: 6.4rem;
  margin-bottom: 0rem;
}
.timeline--item .desc {
  font-size: 2.4rem;
  margin-bottom: 0rem;
}
.timeline--item .detail {
  font-size: 1.4rem;
  color: #b3b3b2;
}
.timeline--item img {
  width: 90%;
  margin-top: -2rem;
}
.timeline__space {
  padding-top: 30%;
}

@media screen and (max-width: 768px) {
  .timeline__space {
    padding-top: 0%;
  }
}
#features {
  background-image: url(/front/images/home/features-bg.png);
  background-size: cover;
}

.features--item {
  padding: 4rem;
  border: 2px solid #1f1f1f;
  border-radius: 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.features--item h3 {
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
  min-height: 8.6rem;
}
.features--item p {
  font-size: 1.4rem;
  color: #b3b3b2;
  margin-bottom: 2rem;
}

#services {
  background-image: url(/front/images/home/services-bg.png);
  background-size: 100% 100%;
}

.services {
  background-image: url(/front/images/home/Dots.png);
  background-size: cover;
}
.services--item {
  padding: 4rem 2.4rem 4rem 3.4rem;
  height: 100%;
}
.services--heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.services--desc {
  max-width: 90%;
}
.services--price {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  text-align: end;
  max-width: 94%;
}
.services__page {
  background-image: unset !important;
}

.work--item {
  padding: 6rem 4rem;
  height: 100%;
}
.work--header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.work--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.work--tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.work--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.4rem;
}

.tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  background-color: #1f1f1f;
  padding: 0rem 1.6rem 0.2rem;
  border-radius: 8rem;
  width: -moz-fit-content;
  width: fit-content;
}
.tag--name {
  color: #ffffff;
}

.ar .timeline--item img {
  transform: rotateY(180deg);
}

@media screen and (max-width: 500px) {
  .work--item {
    padding: 3rem 2rem;
  }
  .tag {
    font-size: 1.4rem;
    gap: 0.4rem;
  }
}
.testimonial--item {
  height: 100%;
  width: 51rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimonial--content {
  background: linear-gradient(180deg, #1a1a1a, rgba(26, 26, 26, 0.3411764706));
  padding: 4rem;
  border: 2px solid #1f1f1f;
  border-radius: 0.8rem;
  position: relative;
}
.testimonial--content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 1.3rem;
  width: 3.8rem;
  height: 2.3rem;
  border: 2.3rem solid transparent;
  border-top: 2.3rem solid #1f1f1f;
}
.testimonial--user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
}
.testimonial--user h3 {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
}
.testimonial--user span {
  color: #7e7e81;
}

@media screen and (max-width: 575px) {
  .testimonial--item {
    width: 38rem;
  }
}
.ar .testimonial--content::after {
  left: auto;
  right: 1.3rem;
}

.faq {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.faq--heading {
  margin: 3rem 0;
}
.faq--heading h2 {
  max-width: 50rem;
  margin: auto;
}
.faq::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -40%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(244, 117, 71, 0.1) 5%, rgba(244, 117, 71, 0.1) 10%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.9) 100%);
  transform-origin: right center;
  z-index: -1;
}

.bg--shapes .circle {
  width: 350px;
  height: 350px;
  border: 12px solid #f47647; /* stroke */
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 30rem;
  transform: translate(70%, -50%);
  z-index: -1;
}
.bg--shapes .line {
  width: 36px;
  height: 280%;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.116));
  position: absolute;
  right: 20px;
  top: 60rem;
  transform: translate(50%, -50%) rotate(310deg);
  z-index: -1;
}
.bg--shapes .line-2 {
  top: 50rem;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.171));
}
.bg--shapes .elipse {
  width: 120px;
  height: 230px;
  border: 10px solid #f47647; /* stroke */
  border-radius: 500px;
  position: absolute;
  left: 0;
  top: 9rem;
  transform: translateX(-45%);
  z-index: -2;
}
.bg--shapes .elipse-2 {
  width: 200px;
  height: 140px;
  top: 45rem;
  transform: translateX(-30%);
  border-color: #28404f;
}

/* Custom properties for easy color management */
:root {
  --bg-color-dark: #121212; /* Main dark background */
  --section-bg-darker: #0d0d0d; /* Slightly darker background for sections */
  --text-primary-light: #ffffff;
  --text-secondary-light: #b0b0b0; /* Light gray for body text */
  --sidebar-bg: #0d0d0d;
  --sidebar-active-bg: #222222;
  --border-color: #333333;
  --link-color: #ffffff;
  --tab-active-border: #ffffff;
}

.categories {
  background-image: url(/front/images/home/services-bg.png);
  background-size: cover;
}
.categories h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e6e6e6;
}
.categories__container {
  display: flex;
  min-height: 100vh;
}
.categories__sidebar {
  width: 34rem;
  flex-shrink: 0;
  transition: width 0.3s;
}
.categories__sidebar .nav-item {
  margin-bottom: 1.6rem;
}
.categories__sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary-light);
  padding: 2rem 2rem;
  border-radius: 1rem;
  border: 2px solid #1f1f1f;
  transition: background-color 0.3s, border-left-color 0.3s, color 0.3s;
}
.categories__sidebar .nav-link:hover {
  background-color: #141414;
}
.categories__sidebar .nav-link.active {
  background-color: #1f1f1f;
  color: var(--text-primary-light);
}
.categories__btn {
  margin: auto;
  transform: translateY(-50%);
}
.categories__content {
  flex-grow: 1;
  padding: 2rem;
  max-width: 100%;
}
.categories .features {
  padding: 5rem;
}
.categories .features__item {
  padding: 1.5rem;
}
.categories .rounded-table {
  border-collapse: separate;
  /* Ensure no space between cells */
  border-spacing: 0;
}
.categories .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--text-secondary-light);
  border: 1px solid var(--border-color);
  border-radius: 10px !important;
}
.categories .table tbody {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  border-collapse: separate;
}
.categories .table th {
  border: 1px solid var(--border-color);
  color: var(--text-primary-light);
  font-weight: 500;
  padding: 2.4rem 3rem;
  margin-bottom: 1rem;
}
.categories .table td {
  border: 1px solid var(--border-color);
  padding: 2.4rem 3rem;
  margin-bottom: 1rem;
}

/* Adjust content area for desktop view where sidebar is present */
@media (max-width: 1200px) {
  .categories__container {
    display: block;
  }
  .categories__sidebar {
    width: 100%;
  }
  .categories__sidebar .nav {
    flex-direction: row !important;
    gap: 1.4rem;
  }
  .categories__content {
    padding: 2rem 0;
  }
}
@media (max-width: 992px) {
  .categories__sidebar {
    width: 100%;
  }
  .categories__sidebar .nav {
    flex-direction: column !important;
    gap: 0;
  }
  .categories .features {
    padding: 4.5rem 3rem;
  }
  .categories .features__item {
    padding: 1.5rem 0;
  }
}
@media (max-width: 575px) {
  .categories .features {
    padding: 3.5rem 2rem;
  }
  .categories .features__item {
    padding: 1.5rem 0;
  }
}
/* Portfolio Section */
.portfolio-img {
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  height: 32.6rem;
  width: 100%;
}

.team-members {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 30px 20px;
  background-image: url(/front/images/story/team-member-bg.png);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #141414;
}

.team-members h4 {
  background: linear-gradient(to right, #1f1f1f, rgba(31, 31, 31, 0));
  border: 1px solid #333;
  border-radius: 30px;
  padding: 14px 30px;
  white-space: nowrap;
  font-size: 1.6rem;
}

.team-members .member-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

.team-members .member-social a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1a1a1a;
  background: linear-gradient(to right, #1a1a1a, rgba(26, 26, 26, 0));
  transition: all 0.2s;
  /* display: block; */
}

.team-members .member-social a:hover {
  border: 1px solid #3b3a3a;
  background: #1a1a1a;
}

.img-border-radus {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
}

.img-border-radus::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(to bottom, #292929, rgba(41, 41, 41, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.w-fit-140 {
  width: 140px;
  height: 140px;
}

.w-fit-112 {
  width: 112px;
  height: 112px;
}

.brdr-gred {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  /* background: #26262600; */
  background: linear-gradient(90deg, rgba(38, 38, 38, 0) 0%, rgb(38, 38, 38) 50%, rgba(38, 38, 38, 0) 100%);
}

/* ********************* Our Achievements section start **************** */
.dot-2 {
  background-image: url(/front/dot-2.png);
  background-size: 100%;
  background-position: center center;
}

/* ********************* Our Achievements section end **************** */
.achievement-num p {
  position: relative;
  font-size: 100px;
  font-weight: 900;
  line-height: 150%;
  color: #f47647;
  /* width: fit-content; */
}

.achievement-num p::before {
  content: "";
  width: 50px;
  height: 70px;
  background: #f47647;
  filter: blur(45px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
}

.achievement-content .achievement-desc {
  padding: 40px;
  border: 1px solid #1f1f1f;
  background: #0f0f0f;
  border-radius: 20px;
}

.achievement-shape {
  width: 445px;
  height: 445px;
  border-radius: 1172px;
  border: 24px solid #f47647;
  position: absolute;
  bottom: 0;
  right: -320px;
  z-index: -1;
  opacity: 0.9;
}

.awards-block {
  position: relative;
  background-image: url(/front/abstract.svg);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  border-radius: 20px;
}

.awards-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* border width */
  background: linear-gradient(to bottom, #292929, rgba(41, 41, 41, 0));
  /* to show border only */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.blur-shap {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  /* ******************** Categories of Services Section end **************  */
  /* ******************** Our Achievements Section start **************  */
  .achievement-num p {
    font-size: 90px;
  }
  .achievements-shap {
    right: -370px;
  }
}
@media (max-width: 426px) {
  /* ******************** Our Achievements Section start **************  */
  .achievement-num p {
    font-size: 70px;
  }
  .achievements-shap {
    right: -400px;
  }
}
/* shaps  */
.awards {
  position: relative;
  overflow: hidden;
}
.awards .bg--shapes .line {
  height: 107%;
}

.shape {
  position: absolute;
  border: 25px solid transparent;
  /* opacity: 0.6; */
}

.shape-vertical-awards {
  width: 423px;
  height: 226px;
  border-radius: 120px;
  border-color: #f47647;
  left: -150px;
  bottom: 18%;
  transform: rotate(-90deg);
}

.ray {
  position: absolute;
  right: 0;
  width: 1800px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  transform-origin: right center;
}

.ray-1 {
  top: 70%;
  transform: rotate(35deg);
  opacity: 0.6;
}

.ray-2 {
  top: 85%;
  transform: rotate(35deg);
  opacity: 0.4;
}

.big-blur-awards {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(244, 117, 71, 0.15) 5%, rgba(244, 117, 71, 0.12) 10%, rgba(244, 117, 71, 0.05) 30%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.9) 100%);
  border-radius: 50%;
  left: -40%;
  top: 0%;
  z-index: -1;
}

.awards-block {
  position: relative;
  background-image: url(/front/images/story/team-member-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  border-radius: 20px;
}

.awards-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* border width */
  background: linear-gradient(to bottom, #292929, rgba(41, 41, 41, 0));
  /* to show border only */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.blur-shap {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.w-fit-84 {
  width: 84px;
  height: 84px;
}

.w-fit-132 {
  width: 132px;
  height: 132px;
}

.w-fit-172 {
  width: 172px;
  height: 172px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  height: 100%;
}
.feature-card__icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #1a1a1a;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid #333333;
  background-image: url(/front/images/projects/features-icon-bg.png);
  background-size: cover;
}
.feature-card__title {
  margin: 1rem 0;
}

:root {
  --pd-black: #080808;
  --pd-dark-gray: #151515;
  --pd-light-gray: #757575;
  --pd-white: #e0e0e0;
  --pd-red-accent: #ff4d4d;
  --pd-border-color: #2c2c2c;
  --pd-spacing: 1.5rem;
  --pd-radius: 0.75rem;
}

.project-detail {
  /* Technology Icons */
  /* Team Cards */
  /* Methods Used Badges */
}
.project-detail__hero-image {
  width: 100%;
  height: 70vh;
  border-radius: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.6rem 0;
}
.project-detail__title {
  margin: 0;
}
.project-detail__toggle {
  color: var(--pd-light-gray);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-detail__toggle .fa-chevron-up, .project-detail__toggle .fa-chevron-down {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 66px;
  background: linear-gradient(180deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
}
.project-detail__toggle i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
.project-detail__toggle[aria-expanded=false] i {
  transform: rotate(180deg);
}
.project-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--pd-spacing);
  padding-bottom: var(--pd-spacing);
  border-bottom: 1px solid var(--pd-border-color);
}
.project-detail__tag {
  background-color: #141414;
  border: 1px solid var(--pd-border-color);
  padding: 1rem 1.8rem;
  border-radius: 20rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-detail__content {
  padding: 5rem;
  border-radius: 2rem;
  border: 1px solid #1f1f1f;
  background: #0f0f0f;
}
.project-detail__section-title {
  margin-bottom: 1rem;
  color: var(--pd-white);
}
.project-detail__data-row:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.project-detail__data {
  padding: 1rem 3rem;
}
.project-detail__data-key {
  color: var(--pd-light-gray);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.project-detail__data-value {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0;
}
.project-detail__tech {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 4rem;
  flex-wrap: wrap;
}
.project-detail__tech-icon {
  font-size: 2.4rem;
  color: #f47647;
  background-color: var(--pd-black);
  border-radius: 1.2rem;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--pd-border-color);
  transition: color 0.2s, border-color 0.2s;
}
.project-detail__team-card {
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid var(--pd-border-color);
  height: 100%;
}
.project-detail__team-card-title {
  margin-bottom: 1.2rem;
}
.project-detail__team {
  padding: 3rem;
}
.project-detail__team-member-avatars {
  display: flex;
}
.project-detail__team-member-list {
  display: flex;
  align-items: center;
}
.project-detail__team-member-item {
  font-weight: 600;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.project-detail__team-member-item img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-detail__team-member-item img:not(:first-child) {
  margin-left: -2rem;
}
.project-detail__method {
  padding: 3rem;
}
.project-detail__method-list {
  padding: 3rem;
}
.project-detail__method-badge {
  border: 1px solid var(--pd-red-accent);
  padding: 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  margin-top: 0.5rem;
  white-space: nowrap;
  flex-grow: 1;
}

/* Responsive adjustments for description details */
@media (max-width: 576px) {
  .project-detail__content {
    padding: 4rem 3rem !important;
  }
}
.send-message-bg {
  background-image: url(/front/Dots02.png);
  background-size: cover;
  background-position: center center;
}

.contact-form .small-label {
  color: #e4e4e6;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  font-size: 18px;
  padding: 16px 8px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2f2f37;
  color: #ffffff !important;
  line-height: 150%;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  /* outline: none !important; */
  background: transparent;
}

.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  font-size: 22px;
  color: #62646c;
  text-transform: uppercase;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 22px;
  color: #62646c;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  /* form  */
  .contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
    font-size: 20px;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 20px;
  }
}/*# sourceMappingURL=styles.css.map */