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

.fancybox__container {
  z-index: 1999;
}

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

:root {
  --ink: #383735;
  --ink-faint: #cfcbcb;
  --badge-bg: #f2f2f2;
  --accent: #e77f10;
}

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

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background: black;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #fcfcfc;
  overflow-x: hidden;
  position: relative;
  font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

html[lang=en] {
  direction: ltr;
}
html[lang=en] main .hero-section .vertical-line {
  right: 80%;
  left: auto;
}
html[lang=en] main .hero-section .hero-text .cta-btn .arrow {
  transform: rotate(180deg);
}
html[lang=en] .site-footer .footer-col ul li a::before {
  left: -10px;
  right: auto;
}
html[lang=en] main .contact .contact-form .input-box i {
  left: 15px;
  right: auto;
}
html[lang=en] main .contact .contact-form .input-box input, html[lang=en] main .contact .contact-form .input-box textarea {
  padding: 14px 15px 14px 45px;
}

html[lang=ar] {
  direction: rtl;
}
@media screen and (max-width: 768px) {
  html[lang=ar] header nav .nav_links.active {
    right: -40px;
  }
}

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

a {
  text-decoration: none;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.preloader .logo {
  width: 150px;
  height: 150px;
  background: url("../images/logo.png") center/contain no-repeat;
  position: relative;
  overflow: hidden;
}
.preloader .logo::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.8), transparent 70%);
  transform: translateX(-100%) rotate(25deg);
  animation: shine 1.8s ease forwards;
}
@keyframes shine {
  to {
    transform: translateX(100%) rotate(25deg);
  }
}

@keyframes reveal {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1490196078);
}
header.sticky {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  header {
    padding: 2px 25px;
    margin: 0;
  }
}
header nav {
  padding: 0 16px !important;
  border-radius: 20px;
  margin: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  header nav {
    padding: 10px 0;
  }
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 45px;
}
@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 40px;
  }
}
header nav .nav_links {
  gap: 45px;
  transition: 0.3s ease-in-out;
  padding: 18px 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
header nav .nav_links a {
  color: white;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
  padding: 6px 12px;
  border-radius: 12px;
}
header nav .nav_links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: scale(0.85);
  opacity: 0;
  transition: 0.3s ease;
  border-radius: 12px;
  z-index: -1;
}
header nav .nav_links a:hover {
  color: white;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}
header nav .nav_links a:hover::before {
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  header nav .nav_links {
    position: absolute;
    top: -30px;
    bottom: -16px;
    right: calc(-55% - 40px);
    height: calc(100vh + 16px);
    flex-direction: column;
    background: #feb161;
    width: 55%;
    padding: 48px 32px;
    justify-content: start;
  }
  header nav .nav_links a {
    color: white;
  }
  header nav .nav_links.active {
    left: -40px;
    border-radius: 0;
  }
}
header nav .actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
header nav .actions button {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .actions .toggler {
  display: none;
  color: #feb161;
}
@media screen and (max-width: 768px) {
  header nav .actions .toggler {
    display: flex;
  }
}
header nav.sticky {
  padding: 10px 42px !important;
  background: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
header nav.sticky img {
  filter: none;
}
@media screen and (max-width: 768px) {
  header nav.sticky {
    padding: 10px !important;
  }
}
header nav.sticky .nav_links a::before {
  border: 1px solid rgba(254, 178, 97, 0.2588235294);
}
header nav.sticky .nav_links a,
header nav.sticky .actions button {
  color: #feb161;
}
@media screen and (max-width: 768px) {
  header nav.sticky .nav_links a {
    color: white;
  }
}

main .hero-section {
  position: relative;
  height: 100vh;
  background: url("../images/herosec.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-attachment: scroll;
}
main .hero-section .hero-loader {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 10;
}
main .hero-section .hero-loader .strip {
  flex: 1;
  background: #faf9f9;
  transform: scaleY(1);
  transform-origin: top;
}
main .hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
main .hero-section .vertical-line {
  position: absolute;
  left: 80%;
  top: 14%;
  width: 1px;
  height: 90%;
  background: rgba(255, 255, 255, 0.1490196078);
  transform: translateX(-50%);
  z-index: 2;
}
main .hero-section .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  margin-top: 20%;
}
main .hero-section {
  /* LEFT SIDE */
}
main .hero-section .left-side {
  padding: 0 20px;
}
main .hero-section .left-side .sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
}
main .hero-section {
  /* RIGHT SIDE */
}
main .hero-section .right-side {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
main .hero-section .hero-text {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
main .hero-section .hero-text .main-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.3;
}
main .hero-section .hero-text .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 25px;
  transition: 0.3s;
  margin-top: 20px;
}
main .hero-section .hero-text .cta-btn .arrow {
  background: #e77f10;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
main .hero-section .hero-text .cta-btn .arrow i {
  font-size: 14px;
  color: #fff;
}
main .hero-section .hero-text .cta-btn:hover {
  transform: translateY(-3px);
}
main .hero-section .hero-text .cta-btn:hover .arrow i {
  transform: translateX(-2px);
  transition: 0.3s;
}
main .hero-section .hero-text .footer {
  margin-top: 20%;
}
main .hero-section .hero-text .footer .horizontal-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}
main .hero-section .hero-text .footer .description {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  main .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
  }
  main .hero-section .vertical-line {
    display: none;
  }
  main .hero-section .hero-content {
    margin-top: 0;
    height: auto;
  }
  main .hero-section .row {
    flex-direction: column;
    gap: 30px;
  }
  main .hero-section {
    /* LEFT */
  }
  main .hero-section .left-side {
    text-align: center;
  }
  main .hero-section .left-side .sub-title {
    font-size: 12px;
    letter-spacing: 1px;
  }
  main .hero-section {
    /* RIGHT */
  }
  main .hero-section .right-side {
    justify-content: center;
  }
  main .hero-section .hero-text {
    align-items: center;
    text-align: center;
    padding: 10px 15px;
  }
  main .hero-section .hero-text .main-title {
    font-size: 33px;
    line-height: 1.4;
  }
  main .hero-section .hero-text .cta-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  main .hero-section .hero-text .cta-btn .arrow {
    width: 30px;
    height: 30px;
  }
  main .hero-section .hero-text .footer {
    margin-top: 30px;
  }
  main .hero-section .hero-text .footer .horizontal-line {
    width: 100%;
  }
  main .hero-section .hero-text .footer .description {
    font-size: 14px;
    line-height: 1.6;
  }
}
main .track-shipment {
  padding: 40px 0;
}
main .track-shipment .container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
  z-index: 1;
}
main .track-shipment .container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/bg.png") center/cover no-repeat;
}
main .track-shipment .container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
}
main .track-shipment .track-title {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
main .track-shipment .track-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 35px;
}
main .track-shipment .track-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 550px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  main .track-shipment .track-form {
    flex-direction: column;
  }
}
main .track-shipment .track-input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 15px;
}
main .track-shipment .track-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
main .track-shipment .track-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
main .track-shipment .track-input:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}
main .track-shipment .track-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-shrink: 0;
  height: 54px;
  padding: 0 30px;
  border-radius: 8px;
  background: #feb161;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}
main .track-shipment .track-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.4s ease;
  z-index: -1;
}
main .track-shipment .track-btn:hover {
  color: #feb161;
}
main .track-shipment .track-btn:hover::before {
  transform: scaleX(1);
}
main .track-shipment .track-btn:active {
  transform: scale(0.97);
}
@media (max-width: 576px) {
  main .track-shipment .track-btn {
    width: 100%;
  }
}
main .about {
  padding: 40px 0;
}
main .about__content {
  display: flex;
  align-items: flex-start;
  gap: 10%;
}
@media (max-width: 992px) {
  main .about__content {
    flex-direction: column;
    gap: 20px;
  }
}
main .about__badge-row {
  flex-shrink: 0;
}
main .about .badge-box {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
main .about .badge-box .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
}
main .about .badge-box .icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .about__text {
  flex: 1;
  margin: 0;
  line-height: 1.6;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  text-align: justify;
}
main .about__text .word {
  color: var(--ink-faint);
}
@media (prefers-reduced-motion: reduce) {
  main .about__text .word {
    color: var(--ink) !important;
  }
}
main .vision-mission {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
main .vision-mission__image {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
main .vision-mission__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
}
main .vision-mission__content {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .vision-mission .section-tag {
  color: #feb161;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}
main .vision-mission .section-tag::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #feb161;
  display: block;
  margin-top: 10px;
}
main .vision-mission h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 50px;
}
main .vision-mission h2 span {
  color: #feb161;
}
main .vision-mission .info-box__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
main .vision-mission .info-box__head h3 {
  color: black;
  font-size: 1.8rem;
  margin: 0;
}
main .vision-mission .info-box__head i {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(254, 177, 97, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #feb161;
  font-size: 22px;
}
main .vision-mission .info-box p {
  color: #6b7280;
  line-height: 2;
  font-size: 1.05rem;
}
main .vision-mission .divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}
main .vision-mission .stats-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
main .vision-mission .stat-card {
  text-align: center;
  padding: 0 15px;
}
main .vision-mission .stat-card:not(:last-child) {
  border-left: 1px solid #e5e7eb;
}
main .vision-mission .stat-card i {
  color: #feb161;
  font-size: 2rem;
  margin-bottom: 15px;
}
main .vision-mission .stat-card h4 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: black;
}
main .vision-mission .stat-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  main .vision-mission .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  main .vision-mission .stat-card {
    border: none !important;
  }
}
@media (max-width: 576px) {
  main .vision-mission .stats-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  main .vision-mission {
    grid-template-columns: 1fr;
  }
  main .vision-mission__content {
    padding: 40px 20px;
  }
  main .vision-mission h2 {
    font-size: 2rem;
  }
}
main .services-showcase {
  padding: 50px 0;
}
main .services-showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
  margin-bottom: 60px;
  border-bottom: 1px solid #d8d8d8;
}
main .services-showcase__header h2,
main .services-showcase__header span {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  color: black;
}
main .services-showcase__content {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 70px;
  align-items: start;
}
main .services-showcase .services-list {
  border-top: none;
}
main .services-showcase .service-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  min-height: 140px;
  cursor: pointer;
}
main .services-showcase .service-item:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
main .services-showcase .service-item .number {
  font-size: 3rem;
  font-weight: 500;
  color: #bdbdbd;
  transition: 0.3s;
}
main .services-showcase .service-item .title-wrap {
  padding-right: 50px;
  position: relative;
}
main .services-showcase .service-item .title-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: #dcdcdc;
}
main .services-showcase .service-item h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #bdbdbd;
  transition: 0.3s;
}
main .services-showcase .service-item.active .number,
main .services-showcase .service-item.active h3 {
  color: black;
}
main .services-showcase .service-item.active .title-wrap::before {
  background: black;
}
main .services-showcase .service-item:hover .number,
main .services-showcase .service-item:hover h3 {
  color: black;
}
main .services-showcase .service-item:hover .title-wrap::before {
  background: black;
}
main .services-showcase .service-preview img {
  width: 90%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-bottom: 35px;
}
main .services-showcase .service-preview h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 35px;
}
main .services-showcase .service-preview ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}
main .services-showcase .service-preview ul li {
  position: relative;
  padding-right: 22px;
  color: black;
  line-height: 1.8;
  font-size: 1.1rem;
}
main .services-showcase .service-preview ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #feb161;
  position: absolute;
  right: 0;
  top: 12px;
}
@media (max-width: 991px) {
  main .services-showcase__content {
    grid-template-columns: 1fr;
  }
  main .services-showcase__header h2,
  main .services-showcase__header span {
    font-size: 3rem;
  }
  main .services-showcase .service-item {
    min-height: 100px;
  }
  main .services-showcase .service-item h3 {
    font-size: 1.3rem;
  }
  main .services-showcase .service-item .number {
    font-size: 2rem;
  }
  main .services-showcase .service-preview img {
    height: 300px;
  }
  main .services-showcase .service-preview h4 {
    font-size: 1.8rem;
  }
  main .services-showcase .service-preview ul {
    grid-template-columns: 1fr;
  }
}
main .goals-grid {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
}
@media (max-width: 900px) {
  main .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  main .goals-grid {
    grid-template-columns: 1fr;
  }
}
main .goals-grid {
  /* =========================
     CARD BASE
  ========================= */
}
main .goals-grid .goal-card {
  padding: 2.2rem 1.8rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
main .goals-grid .goal-card:hover {
  transform: translateY(-6px);
}
main .goals-grid .goal-card__title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.35;
  margin-bottom: 0.9rem;
}
main .goals-grid .goal-card__text {
  font-size: 0.99rem;
  line-height: 1.75;
  max-width: 30ch;
}
main .goals-grid .goal-card__icon {
  margin-top: auto;
  padding-top: 2.5rem;
  width: 150px;
  height: 150px;
}
main .goals-grid .goal-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
main .goals-grid .goal-card {
  /* MAIN CARD*/
}
main .goals-grid .goal-card--main {
  background: #feb161;
  color: black;
}
main .goals-grid .goal-card--main .goal-card__num,
main .goals-grid .goal-card--main .goal-card__text,
main .goals-grid .goal-card--main .goal-card__icon {
  color: rgba(0, 0, 0, 0.7);
}
main .goals-grid .goal-card {
  /* 2 — GRAY CARD */
}
main .goals-grid .goal-card--gray {
  background: #f8f7f7;
  color: black;
}
main .goals-grid .goal-card--gray .goal-card__num {
  color: #6b7280;
}
main .goals-grid .goal-card--gray .goal-card__text {
  color: #6b7280;
}
main .goals-grid .goal-card--gray .goal-card__icon {
  color: #6b7280;
}
main .goals-grid .goal-card {
  /* 3 — DARK CARD */
}
main .goals-grid .goal-card--dark {
  background: black;
  color: white;
}
main .goals-grid .goal-card--dark .goal-card__num {
  color: rgba(255, 255, 255, 0.6);
}
main .goals-grid .goal-card--dark .goal-card__text {
  color: rgba(255, 255, 255, 0.75);
}
main .goals-grid .goal-card--dark .goal-card__icon {
  color: rgba(255, 255, 255, 0.8);
}
main .reveal-item {
  opacity: 0;
  transform: translateY(24px);
}
@media (prefers-reduced-motion: reduce) {
  main .reveal-item {
    opacity: 1;
    transform: none;
  }
}
main {
  /* =========================
     ICON ANIMATIONS
  ========================= */
}
@media (prefers-reduced-motion: reduce) {
  main .goal-card__icon * {
    animation: none !important;
  }
}
main {
  /* STACK */
}
main .icon-stack ellipse {
  animation: stack-breathe 2.6s ease-in-out infinite;
  transform-origin: center;
}
main .icon-stack ellipse:nth-child(1) {
  animation-delay: 0s;
}
main .icon-stack ellipse:nth-child(2) {
  animation-delay: 0.15s;
}
main .icon-stack ellipse:nth-child(3) {
  animation-delay: 0.3s;
}
main .icon-stack ellipse:nth-child(4) {
  animation-delay: 0.45s;
}
main .icon-stack ellipse:nth-child(5) {
  animation-delay: 0.6s;
}
@keyframes stack-breathe {
  0%, 100% {
    opacity: 0.45;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.08);
  }
}
main .icon-orbit circle {
  transform-origin: center;
  animation: ring-breathe 2.8s ease-in-out infinite;
}
main .icon-orbit circle:nth-child(1) {
  animation-delay: 0s;
}
main .icon-orbit circle:nth-child(2) {
  animation-delay: 0.1s;
}
main .icon-orbit circle:nth-child(3) {
  animation-delay: 0.2s;
}
main .icon-orbit circle:nth-child(4) {
  animation-delay: 0.3s;
}
@keyframes ring-breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
main {
  /* LINK */
}
main .icon-link .pulse-dot {
  animation: link-travel 2.2s ease-in-out infinite;
}
@keyframes link-travel {
  0%, 100% {
    transform: translateX(-8px);
    opacity: 0.3;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}
main {
  /* STEPS */
}
main .icon-steps path.draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-loop 3.2s ease-in-out infinite;
}
@keyframes draw-loop {
  0% {
    stroke-dashoffset: 1;
  }
  45% {
    stroke-dashoffset: 0;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1;
  }
}
main {
  /* GRID */
}
main .icon-grid circle {
  animation: grid-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes grid-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}
main {
  /* RIPPLE */
}
main .icon-ripple .ring {
  animation: ripple-out 2.4s ease-out infinite;
  transform-origin: center;
  opacity: 0;
}
@keyframes ripple-out {
  0% {
    transform: scale(0.3);
    opacity: 0.7;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
main .stats-section {
  height: 500px;
  width: 100%;
  background: url("../images/att.jpg") center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
main .stats-section .stats-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
main .stats-section .stat-card {
  text-align: center;
  color: white;
}
main .stats-section .stat-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .stats-section .stat-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .stats-section .stat-card h4 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}
main .stats-section .stat-card p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991px) {
  main .stats-section {
    height: auto;
    padding: 80px 0;
  }
  main .stats-section .stats-overlay {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 576px) {
  main .stats-section .stats-overlay {
    grid-template-columns: 1fr;
  }
  main .stats-section .stat-card h4 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  main .stats-section {
    height: auto;
    padding: 80px 0;
  }
  main .stats-section .stats-overlay {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 576px) {
  main .stats-section .stats-overlay {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  main .stats-section .stat-card h4 {
    font-size: 2rem;
  }
  main .stats-section .stat-card p {
    font-size: 0.9rem;
  }
  main .stats-section .stat-card .icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
}
main .values-ticker {
  position: relative;
  padding-top: 120px;
  background: white;
  overflow: hidden;
}
main .values-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
  z-index: 0;
}
main .values-ticker__desc {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
main .values-ticker__desc p {
  font-size: 1.35rem;
  line-height: 2.1;
  color: #111;
  font-weight: 500;
  position: relative;
}
main .values-ticker__desc p::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: -14px;
  font-size: 3rem;
  color: #feb161;
}
main .values-ticker__desc p::after {
  content: "”";
  position: absolute;
  bottom: -40px;
  font-size: 3rem;
  color: #feb161;
}
main .values-ticker__bar {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
main .values-ticker__bar .track {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 22s linear infinite;
}
main .values-ticker__bar .track span {
  font-size: 1.4rem;
  color: #111;
  padding: 16px 0;
  font-weight: 600;
  letter-spacing: 0.3px;
}
main .values-ticker__bar .track i {
  width: 8px;
  height: 8px;
  background: #feb161;
  display: inline-block;
}
main {
  /* animation */
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
main .why-us {
  padding: 120px 0;
  background: #020203;
}
main .why-us .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
main .why-us .why-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
main .why-us .why-heading {
  padding: 60px;
}
main .why-us .why-heading .section-tag {
  color: #feb161;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 25px;
}
main .why-us .why-heading h2 {
  color: white;
  font-size: 4rem;
  line-height: 1.2;
  margin: 0;
}
main .why-us .why-heading h2 span {
  color: #feb161;
}
main .why-us .why-card {
  padding: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
main .why-us .why-card:nth-last-child(-n+2) {
  border-bottom: none;
}
main .why-us .why-card img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-bottom: 25px;
}
main .why-us .why-card h3 {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 15px;
}
main .why-us .why-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin: 0;
}
main .why-us .why-card:nth-child(odd) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  main .why-us .why-grid {
    grid-template-columns: 1fr;
  }
  main .why-us .why-grid::before {
    display: none;
  }
  main .why-us .why-heading,
  main .why-us .why-card {
    padding: 30px;
    border-left: 0 !important;
  }
  main .why-us .why-heading h2 {
    font-size: 2.5rem;
  }
}
main .partners-section {
  position: relative;
  padding: 120px 20px;
  background: url("../images/att.jpg") center/cover no-repeat;
  color: white;
  overflow: hidden;
}
main .partners-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.55) 100%);
}
main .partners-section .partners-header {
  margin-bottom: 60px;
}
main .partners-section .partners-header h2 {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 15px;
}
main .partners-section .partners-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
}
main .partners-section .partnersSwiper {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
main .partners-section .partnersSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
main .partners-section .partnersSwiper .partner {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
main .partners-section .partnersSwiper .partner img {
  max-width: 120px;
  max-height: 55px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
main .partners-section .partnersSwiper .partner:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: none;
}
@media (max-width: 992px) {
  main .partners-section .partnersSwiper .partner {
    height: 110px;
  }
  main .partners-section .partnersSwiper .partner img {
    max-width: 95px;
  }
}
@media (max-width: 576px) {
  main .partners-section .partnersSwiper .partner {
    height: 90px;
  }
  main .partners-section .partnersSwiper .partner img {
    max-width: 80px;
  }
}
main .faqs-section {
  padding: 120px 0;
  background: white;
}
main .faqs-section__header {
  text-align: center;
  margin-bottom: 60px;
}
main .faqs-section__header h2 {
  font-size: 42px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}
main .faqs-section__header p {
  max-width: 650px;
  margin: auto;
  color: #6b7280;
  line-height: 1.9;
}
main .faqs-section .faq-accordion .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: none;
}
main .faqs-section .faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
main .faqs-section .faq-accordion .accordion-item .accordion-button {
  background: white;
  color: black;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 28px 32px;
  box-shadow: none;
  text-align: right;
}
main .faqs-section .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background: white;
  color: #feb161;
}
main .faqs-section .faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
main .faqs-section .faq-accordion .accordion-item .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .faqs-section .faq-accordion .accordion-item .accordion-button::after {
  margin-left: 0;
  margin-right: auto;
  flex-shrink: 0;
}
main .faqs-section .faq-accordion .accordion-item .accordion-body {
  padding: 0 32px 28px;
  color: #6b7280;
  line-height: 1.9;
  font-size: 1rem;
}
@media (max-width: 992px) {
  main .faqs-section {
    padding: 90px 0;
  }
  main .faqs-section__header h2 {
    font-size: 50px;
  }
  main .faqs-section .faq-accordion .accordion-item .accordion-button {
    font-size: 1.1rem;
    padding: 24px;
  }
  main .faqs-section .faq-accordion .accordion-item .accordion-body {
    padding: 0 24px 24px;
  }
}
@media (max-width: 576px) {
  main .faqs-section__header h2 {
    font-size: 38px;
  }
  main .faqs-section__header p {
    font-size: 14px;
  }
  main .faqs-section .faq-accordion .accordion-item .accordion-button {
    font-size: 1rem;
    padding: 20px;
  }
  main .faqs-section .faq-accordion .accordion-item .accordion-body {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}
main .contact-section {
  position: relative;
  min-height: 350px;
  background: url("../images/bg.jpg") center/cover no-repeat;
}
main .contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.034) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.95) 100%);
}
main .contact {
  background-color: #020203;
  padding-bottom: 50px;
}
main .contact .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
main .contact .contact-header {
  margin-bottom: 50px;
  color: white;
}
main .contact .contact-header .title {
  font-size: 42px;
  font-weight: bold;
}
main .contact .contact-header .subtitle {
  max-width: 600px;
  margin: auto;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.8;
}
main .contact .contact-form .input-box {
  position: relative;
}
main .contact .contact-form .input-box input,
main .contact .contact-form .input-box textarea {
  width: 100%;
  padding: 14px 45px 14px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}
main .contact .contact-form .input-box input::-moz-placeholder, main .contact .contact-form .input-box textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
main .contact .contact-form .input-box input::placeholder,
main .contact .contact-form .input-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
main .contact .contact-form .input-box input:focus,
main .contact .contact-form .input-box textarea:focus {
  border-color: #caa76a;
  background: rgba(255, 255, 255, 0.08);
}
main .contact .contact-form .input-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #feb161;
  font-size: 14px;
}
main .contact .contact-form .input-box.textarea i {
  display: none;
}
main .contact .contact-form .input-box.textarea textarea {
  min-height: 140px;
  resize: none;
  padding-right: 15px;
}
main .contact .contact-form .send-btn {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: bold;
  padding: 12px 35px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 0;
}
main .contact .contact-form .send-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f79e3f;
  transform: translateY(100%);
  transition: 0.5s ease;
  z-index: -1;
}
main .contact .contact-form .send-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: 0.5s ease;
  z-index: -1;
}
main .contact .contact-form .send-btn span,
main .contact .contact-form .send-btn i {
  position: relative;
  z-index: 2;
}
main .contact .contact-form .send-btn:hover {
  border: none;
}
main .contact .contact-form .send-btn:hover::before {
  transform: translateY(0);
}
main .contact .contact-form .send-btn:hover::after {
  opacity: 1;
}

.site-footer {
  background: #0f0f10;
  color: white;
  padding: 90px 0 20px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #feb161, transparent);
}
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .footer-col {
  flex: 1;
}
.site-footer .footer-col:first-child {
  min-width: 250px;
}
.site-footer .footer-col .logo {
  margin-bottom: 15px;
}
.site-footer .footer-col .logo img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .footer-col h3 {
  color: #feb161;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}
.site-footer .footer-col p {
  color: #bbb;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 20px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 12px;
}
.site-footer .footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  padding-right: 18px;
}
.site-footer .footer-col ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  background: #feb161;
  border-radius: 0px;
  transition: 0.3s ease;
}
.site-footer .footer-col ul li a:hover {
  color: #feb161;
  transform: translateX(-4px);
}
.site-footer .footer-col ul li a:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 4px rgba(254, 178, 97, 0.377);
}
.site-footer .footer-col .contact-list li a {
  padding-right: 0;
}
.site-footer .footer-col .contact-list li a::before {
  display: none;
}
.site-footer .footer-col .social {
  display: flex;
  gap: 10px;
}
.site-footer .footer-col .social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.site-footer .footer-col .social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #feb161;
  transform: scale(0);
  transition: 0.3s;
  border-radius: 12px;
}
.site-footer .footer-col .social a i, .site-footer .footer-col .social a svg {
  position: relative;
  z-index: 2;
}
.site-footer .footer-col .social a:hover {
  color: #000;
}
.site-footer .footer-col .social a:hover::before {
  transform: scale(1);
}
.site-footer .footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 13px;
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .footer-bottom .footer-links span {
  color: #555;
}
.site-footer .footer-bottom .footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}
.site-footer .footer-bottom .footer-links a:hover {
  color: #feb161;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .site-footer .footer-links {
    justify-content: center;
  }
}

.career-section .partner-form {
  padding: 20px 40px;
}
.career-section .partner-form .input-group-custom {
  display: flex;
  flex-direction: column;
}
.career-section .partner-form .input-group-custom label {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}
.career-section .partner-form .input-group-custom label span {
  color: #feb161;
}
.career-section .partner-form .input-group-custom input,
.career-section .partner-form .input-group-custom select {
  border: 1px solid #ddd;
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: 10px;
  color: black;
  outline: none;
  transition: 0.3s;
  background-color: rgba(238, 235, 235, 0.5254901961);
}
.career-section .partner-form .input-group-custom input:focus,
.career-section .partner-form .input-group-custom select:focus {
  border-color: #feb161;
  box-shadow: 0 0 0 4px rgba(254, 177, 97, 0.12);
}
.career-section .partner-form .iti {
  width: 100%;
}
.career-section .partner-form .iti input {
  width: 100%;
  height: 58px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 95px !important;
  transition: 0.3s;
}
.career-section .partner-form .iti input:focus {
  border-color: #feb161;
  box-shadow: 0 0 0 4px rgba(254, 177, 97, 0.12);
}
.career-section .partner-form .iti .iti__selected-country {
  flex-direction: row-reverse;
}
.career-section .partner-form .iti .iti__country-list {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.career-section .partner-form .agree-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}
.career-section .partner-form .agree-box input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
}
.career-section .partner-form .agree-box label {
  color: #666;
  line-height: 2;
}
.career-section .partner-form .agree-box label a {
  color: #feb161;
  text-decoration: none;
}
.career-section .partner-form .agree-box label a:hover {
  text-decoration: underline;
}
.career-section .partner-form .submit-btn {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #feb161;
  background: transparent;
  color: #feb161;
  font-weight: bold;
  padding: 12px 35px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 0;
}
.career-section .partner-form .submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #feb161;
  transform: translateY(100%);
  transition: 0.5s ease;
  z-index: -1;
}
.career-section .partner-form .submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: 0.5s ease;
  z-index: -1;
}
.career-section .partner-form .submit-btn span,
.career-section .partner-form .submit-btn i {
  position: relative;
  z-index: 2;
}
.career-section .partner-form .submit-btn:hover {
  border: none;
  color: white;
}
.career-section .partner-form .submit-btn:hover::before {
  transform: translateY(0);
}
.career-section .partner-form .submit-btn:hover::after {
  opacity: 1;
}
.career-section .partner-form .choices[data-type*=select-one] .choices__inner {
  border: 1px solid #ddd;
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: 10px;
  color: black;
  outline: none;
  transition: 0.3s;
  background-color: rgba(238, 235, 235, 0.5254901961);
}
.career-section .partner-form .choices[data-type*=select-one] .choices__inner:focus {
  border-color: #feb161;
  box-shadow: 0 0 0 4px rgba(254, 177, 97, 0.12);
}
.career-section .partner-form .choices__input {
  direction: rtl;
  text-align: right;
}
.career-section .partner-form .choices__list--dropdown {
  direction: rtl;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.career-section .partner-form .choices__list--dropdown .choices__list {
  max-height: 250px;
  overflow-y: auto;
  padding: 8px 0;
}
.career-section .partner-form .choices__list--dropdown .choices__item {
  padding: 14px 18px;
  font-size: 15px;
  color: #333;
  transition: 0.3s;
  border-bottom: 1px solid #f2f2f2;
}
.career-section .partner-form .choices__list--dropdown .choices__item:last-child {
  border-bottom: none;
}
.career-section .partner-form .choices__list--dropdown .choices__item:hover, .career-section .partner-form .choices__list--dropdown .choices__item.is-highlighted {
  background: rgba(254, 177, 97, 0.08);
  color: #feb161;
}

.page-header {
  position: relative;
  padding: 180px 0 140px;
  overflow: hidden;
  z-index: 1;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/att.jpg") center/cover no-repeat;
  background-attachment: fixed;
  z-index: -2;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 18%, rgba(15, 15, 15, 0.88) 38%, rgba(60, 60, 60, 0.5) 60%, rgba(255, 255, 255, 0.25) 85%, #fff 100%);
  z-index: -1;
}
.page-header .header-content {
  text-align: center;
}
.page-header .page-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-header .page-desc {
  max-width: 650px;
  margin: auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  font-size: 17px;
}

.page-content {
  padding: 90px 0;
}
.page-content .content-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.page-content .content-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.page-content .content-item h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  color: #222;
  margin-bottom: 18px;
  font-weight: 700;
}
.page-content .content-item h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #feb161;
  border-radius: 2px;
  flex-shrink: 0;
}
.page-content .content-item p {
  margin: 0;
  color: #666;
  line-height: 2;
  font-size: 16px;
}

.downloadApp {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 8px;
}
.downloadApp img {
  height: 35px;
}

@media (max-width: 992px) {
  .page-header {
    padding: 150px 0 110px;
  }
  .page-header .page-title {
    font-size: 38px;
  }
  .page-content .content-card {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 130px 0 90px;
  }
  .page-header .page-title {
    font-size: 30px;
  }
  .page-header .page-desc {
    font-size: 15px;
  }
  .page-content {
    padding: 60px 0;
  }
  .page-content .content-card {
    padding: 25px;
  }
  .page-content .content-item h3 {
    font-size: 20px;
  }
  .page-content .content-item p {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */