@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;
}

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

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background: #000;
  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-slider .meta-col {
  margin-bottom: 15%;
}
html[lang=en] main .hero-slider .feature-col {
  margin-top: 0;
}
html[lang=en] main .testimonials .testimonialSwiper .swiper-button-next {
  right: 0;
}

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;
  align-items: center;
  z-index: 999999;
  transition: 0.6s;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader .loader {
  position: relative;
  width: 220px;
  height: 220px;
}
.preloader .spinner {
  position: absolute;
  inset: 0;
  animation: rotate 2.2s linear infinite;
}
.preloader .spinner span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0481ca;
  box-shadow: 0 0 15px rgba(47, 129, 237, 0.137);
  transform: rotate(calc(var(--i) * 90deg)) translateY(-90px);
  animation: pulse 1.2s infinite ease-in-out;
  animation-delay: calc(var(--i) * 0.15s);
}
.preloader .spinner span:nth-child(2) {
  background: #00124c;
}
.preloader .spinner span:nth-child(3) {
  background: #0481ca;
}
.preloader .spinner span:nth-child(4) {
  background: #00124c;
}
.preloader .logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader .logo img {
  width: 100px;
  animation: logoFloat 2s ease-in-out infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: rotate(calc(var(--i) * 90deg)) translateY(-90px) scale(0.8);
  }
  50% {
    transform: rotate(calc(var(--i) * 90deg)) translateY(-90px) scale(1.35);
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(1);
  }
}
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: 60px;
}
@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 50px;
  }
}
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: #00124c;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}
header nav .nav_links a:hover::after, header nav .nav_links a.active::after {
  transform: translateX(-50%) scaleX(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: #00124c;
    width: 55%;
    padding: 48px 32px;
    justify-content: start;
  }
  header nav .nav_links a {
    color: #fff;
  }
  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: #00124c;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .actions .toggler {
  display: none;
  color: #00124c;
}
@media screen and (max-width: 768px) {
  header nav .actions .toggler {
    display: flex;
  }
}
header nav.sticky {
  padding: 10px 42px !important;
  background: #fff;
  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: #00124c;
}
@media screen and (max-width: 768px) {
  header nav.sticky .nav_links a {
    color: #fff;
  }
}

main .hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #f5f5f5;
  overscroll-behavior: contain;
}
main .hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #f5f5f5 0%, rgb(251.3394495413, 253.7798165138, 254.8605504587) 40%, rgb(221.8623853211, 243.9541284404, 253.7376146789) 55%);
  z-index: 0;
}
main .hero-slider .radial-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
main .hero-slider .radial-lines svg {
  width: 100%;
  height: 100%;
}
main .hero-slider .wave-divider {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 70%;
  z-index: 2;
  pointer-events: none;
}
main .hero-slider .wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
main .hero-slider .wave-divider svg path {
  fill: #00124c;
}
main .hero-slider .watermark {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .hero-slider .slides-wrapper {
  position: absolute;
  inset: 0;
  z-index: 5;
}
main .hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}
main .hero-slider .slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
main .hero-slider .slide.is-active .feature-card {
  animation: fadeSlideRight 0.65s 0.15s both;
}
main .hero-slider .slide.is-active .phone-wrap {
  animation: fadeUp 0.7s 0.05s both;
}
main .hero-slider .slide.is-active .slide-meta {
  animation: fadeSlideLeft 0.65s 0.2s both;
}
main .hero-slider .slide .slide-inner {
  padding-top: 80px;
}
main .hero-slider .slide .slide-inner row {
  align-items: center;
}
@media (max-width: 768px) {
  main .hero-slider .slide .slide-inner row {
    align-items: flex-start;
  }
}
main .hero-slider .feature-col {
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 10%;
}
main .hero-slider .feature-card .feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #0481ca;
}
main .hero-slider .feature-card .feature-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: #0481ca;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
main .hero-slider .feature-card .feature-desc {
  color: #6b7280;
  line-height: 1.8;
}
main .hero-slider .phone-col {
  position: relative;
  z-index: 10;
  margin-top: 3%;
}
main .hero-slider .phone-wrap {
  width: clamp(180px, 18vw, 240px);
  margin: auto;
  position: relative;
}
main .hero-slider .phone-frame {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
main .hero-slider .phone-screen-img {
  position: absolute;
  inset: 2.4% auto auto 6.2%;
  width: 87.6%;
  height: 95.2%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  z-index: 1;
}
main .hero-slider .meta-col {
  display: flex;
  align-items: center;
  padding-right: clamp(1.5rem, 4vw, 4rem);
}
main .hero-slider .slide-meta {
  text-align: right;
}
main .hero-slider .slide-meta .slide-num {
  color: rgba(0, 18, 76, 0.5);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
main .hero-slider .slide-meta .slide-heading {
  color: #00124c;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
main .hero-slider .progress-rail {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  z-index: 50;
}
main .hero-slider .progress-rail .rail-track {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 18, 76, 0.15);
}
main .hero-slider .progress-rail .rail-track .rail-fill {
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: linear-gradient(to bottom, #0481ca, #2db9f7);
  transition: height 0.5s ease;
}
main .hero-slider .progress-rail .rail-dots {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}
main .hero-slider .progress-rail .rail-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0, 18, 76, 0.3);
  background: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
}
main .hero-slider .progress-rail .rail-dot:hover {
  border-color: #0481ca;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(4, 129, 202, 0.25);
}
main .hero-slider .progress-rail .rail-dot.is-active {
  background: #0481ca;
  border-color: #0481ca;
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(4, 129, 202, 0.15), 0 0 18px rgba(4, 129, 202, 0.35);
}
main .hero-slider .store-btns {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
}
main .hero-slider .store-btns .store-btn {
  display: block;
  transition: all 0.3s ease;
}
main .hero-slider .store-btns .store-btn img {
  display: block;
  width: auto;
  height: 45px;
}
main .hero-slider .store-btns .store-btn:hover {
  transform: translateY(-4px);
}
main .hero-slider .scroll-hint {
  position: absolute;
  left: 3rem;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}
main .hero-slider .scroll-hint span {
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
}
main .hero-slider .scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}
main .hero-slider .scroll-hint .scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollPulse 1.6s infinite;
}
@media (max-width: 768px) {
  main .hero-slider .phone-col {
    order: 1;
  }
  main .hero-slider .meta-col {
    display: none;
  }
  main .hero-slider .progress-rail {
    right: 1rem;
  }
  main .hero-slider .store-btns .store-btn img {
    height: 42px;
  }
  main .hero-slider .scroll-hint {
    display: none;
  }
  main .hero-slider .watermark {
    font-size: 25vw;
    bottom: 5%;
  }
}
main .services .service-banner {
  height: 100%;
  min-height: 380px;
  border-radius: 30px;
  background: url("../images/bg.png") center center/cover;
  overflow: hidden;
  position: relative;
}
main .services .service-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.479));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
}
main .services .service-banner .overlay span {
  color: #2db9f7;
  font-weight: 600;
}
main .services .service-banner .overlay h2 {
  font-size: 38px;
  margin: 15px 0;
}
main .services .service-banner .overlay p {
  line-height: 1.8;
}
main .services .servicesSwiper {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5fbff 0%, rgba(45, 185, 247, 0.18) 45%, rgba(4, 129, 202, 0.12) 75%, #ffffff 100%);
  border-radius: 20px;
  padding: 25px;
}
main .services .servicesSwiper .swiper-slide {
  height: auto;
}
main .services .service-card {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.377);
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}
main .services .service-card img {
  width: 70px;
  margin-bottom: 18px;
}
main .services .service-card h5 {
  color: #00124c;
  margin-bottom: 10px;
  font-weight: 700;
}
main .services .service-card p {
  color: rgba(107, 114, 128, 0.75);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}
main .services .service-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}
main .how-it-works {
  padding: 60px 0 100px 0;
  background: #f5f5f5;
}
main .how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}
@media (max-width: 992px) {
  main .how-it-works h2 {
    text-align: center;
  }
}
main .how-it-works p {
  color: #6b7280;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  main .how-it-works p {
    text-align: center;
  }
}
main .how-it-works .how-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  main .how-it-works .how-wrapper {
    grid-template-columns: 1fr;
  }
}
main .how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  main .how-it-works .steps {
    grid-template-columns: 1fr;
  }
}
main .how-it-works .step {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
main .how-it-works .step:hover {
  background: #eef2ff;
  transform: translateY(-3px);
}
main .how-it-works .step.active {
  background: #00124c;
}
main .how-it-works .step.active .number {
  background: #fff;
  color: #00124c;
}
main .how-it-works .step.active h4 {
  color: #fff;
}
main .how-it-works .step.active p {
  color: #e2e3e7;
}
main .how-it-works .step .number {
  min-width: 30px;
  height: 34px;
  background: #0481ca;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
main .how-it-works .step h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
main .how-it-works .step p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}
main .how-it-works .how-mockup {
  position: relative;
  text-align: center;
}
main .how-it-works .how-mockup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background-image: url("../images/shape.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 992px) {
  main .how-it-works .how-mockup::before {
    width: 400px;
    height: 400px;
  }
}
main .how-it-works .phone-mockup {
  width: 260px;
  height: 540px;
  background: #0f172a;
  border-radius: 40px;
  padding: 14px;
  margin: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  main .how-it-works .phone-mockup {
    width: 240px;
    height: 480px;
  }
}
main .how-it-works .phone-mockup .phone-screen {
  width: 100%;
  height: 100%;
  background: #1e293b;
  border-radius: 30px;
  overflow: hidden;
}
main .how-it-works .phone-mockup .phone-screen .image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
main .how-it-works .phone-mockup .phone-screen .image-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
main .how-it-works .phone-mockup .phone-screen .image-slider .slide.active {
  opacity: 1;
}
main .how-it-works .phone-mockup .phone-screen .image-slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .download-app-section {
  color: #fff;
  margin: 60px 0;
  position: relative;
}
main .download-app-section .container {
  background: linear-gradient(135deg, #f5fbff 0%, rgba(45, 185, 247, 0.18) 45%, rgba(4, 129, 202, 0.12) 75%, #ffffff 100%);
  padding: 0px 30px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  main .download-app-section .text {
    text-align: center;
  }
}
main .download-app-section .download-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00124c;
  margin-bottom: 15px;
}
main .download-app-section .download-subtitle {
  font-size: 1.15rem;
  color: #727171;
  margin-bottom: 30px;
  line-height: 1.7;
}
main .download-app-section .download-buttons {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  main .download-app-section .download-buttons {
    justify-content: center;
  }
}
main .download-app-section .download-buttons .app-download-btn {
  width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .download-app-section .download-buttons .app-download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}
main .download-app-section .download-buttons .app-download-btn img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  main .download-app-section .phone-mockup {
    display: none;
  }
}
main .download-app-section .background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/shape.svg");
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  main .download-app-section .background-logo {
    background-size: 250px;
  }
}
@media (max-width: 991px) {
  main .download-app-section .container {
    padding: 50px;
    border-radius: 0;
  }
  main .download-app-section .container .download-title {
    font-size: 2rem;
  }
  main .download-app-section .container .download-subtitle {
    font-size: 1rem;
  }
}
main .testimonials {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
main .testimonials .section-title {
  text-align: center;
  margin-bottom: 60px;
}
main .testimonials .section-title .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(4, 129, 202, 0.08);
  color: #0481ca;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
main .testimonials .section-title .badge i {
  font-size: 0.9rem;
}
main .testimonials .section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #00124c;
  font-weight: 800;
  margin-bottom: 15px;
}
main .testimonials .section-title h2 span {
  color: #0481ca;
}
main .testimonials .section-title p {
  max-width: 620px;
  margin: auto;
  color: #6b7280;
  line-height: 1.8;
}
main .testimonials .testimonialSwiper {
  overflow: hidden;
  padding: 20px 70px 80px;
  position: relative;
}
main .testimonials .testimonialSwiper .swiper-wrapper {
  align-items: stretch;
}
main .testimonials .testimonialSwiper .swiper-slide {
  height: auto;
  transition: 0.45s;
  opacity: 0.45;
  transform: scale(0.9);
}
main .testimonials .testimonialSwiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
main .testimonials .testimonialSwiper .testimonial-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  height: 100%;
  border: 1px solid rgba(4, 129, 202, 0.12);
  box-shadow: 0 12px 35px rgba(0, 18, 76, 0.08);
  transition: 0.35s;
}
main .testimonials .testimonialSwiper .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 18, 76, 0.12);
}
main .testimonials .testimonialSwiper .testimonial-card .quote {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0481ca, #2db9f7);
  color: #fff;
  margin-bottom: 25px;
}
main .testimonials .testimonialSwiper .testimonial-card .quote i {
  font-size: 1.3rem;
}
main .testimonials .testimonialSwiper .testimonial-card .review {
  color: #6b7280;
  line-height: 2;
}
main .testimonials .testimonialSwiper .testimonial-card .stars {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}
main .testimonials .testimonialSwiper .testimonial-card .stars i {
  color: #ffc107;
}
main .testimonials .testimonialSwiper .testimonial-card .client {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #edf2f7;
}
main .testimonials .testimonialSwiper .testimonial-card .client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid rgba(4, 129, 202, 0.12);
}
main .testimonials .testimonialSwiper .testimonial-card .client h4 {
  color: #00124c;
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}
main .testimonials .testimonialSwiper .testimonial-card .client span {
  color: #6b7280;
  font-size: 0.9rem;
}
main .testimonials .testimonialSwiper {
  /* ==========================
     Navigation
  ========================== */
}
main .testimonials .testimonialSwiper .swiper-button-next,
main .testimonials .testimonialSwiper .swiper-button-prev {
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(4, 129, 202, 0.15);
  box-shadow: 0 10px 25px rgba(0, 18, 76, 0.08);
  color: #0481ca;
  transition: 0.3s;
}
main .testimonials .testimonialSwiper .swiper-button-next::after,
main .testimonials .testimonialSwiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}
main .testimonials .testimonialSwiper .swiper-button-next:hover,
main .testimonials .testimonialSwiper .swiper-button-prev:hover {
  background: #0481ca;
  color: #fff;
  transform: scale(1.08);
}
main .testimonials .testimonialSwiper .swiper-button-prev {
  left: 0;
  transform: translateY(-50%);
}
main .testimonials .testimonialSwiper .swiper-button-next {
  transform: translateY(-50%);
}
main .testimonials .testimonialSwiper .swiper-pagination {
  bottom: 10px;
}
main .testimonials .testimonialSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(4, 129, 202, 0.25);
  opacity: 1;
  transition: 0.3s;
}
main .testimonials .testimonialSwiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0481ca, #2db9f7);
}
@media (max-width: 991px) {
  main .testimonials {
    padding: 80px 0;
  }
  main .testimonials .testimonialSwiper {
    padding: 20px 20px 70px;
  }
  main .testimonials .testimonialSwiper .testimonial-card {
    padding: 28px;
  }
  main .testimonials .testimonialSwiper .testimonial-card .review {
    min-height: auto;
  }
  main .testimonials .testimonialSwiper .swiper-button-next {
    right: 10px;
  }
  main .testimonials .testimonialSwiper .swiper-button-prev {
    left: 10px;
  }
}
@media (max-width: 767px) {
  main .testimonials {
    padding: 70px 0;
  }
  main .testimonials .section-title {
    margin-bottom: 35px;
  }
  main .testimonials .section-title h2 {
    font-size: 1.8rem;
  }
  main .testimonials .testimonialSwiper {
    padding: 0 0 60px;
  }
  main .testimonials .testimonialSwiper .testimonial-card {
    padding: 22px;
  }
  main .testimonials .testimonialSwiper .swiper-button-next,
  main .testimonials .testimonialSwiper .swiper-button-prev {
    display: none;
  }
}
main .testimonialSwiper {
  overflow: visible;
  padding: 20px 90px 80px;
}
main .swiper-button-prev {
  left: -25px;
}
main .swiper-button-next {
  right: -25px;
}
main .contact-section {
  padding: 60px 0;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}
main .contact-section .container {
  margin: 0 auto;
}
main .contact-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
main .contact-section .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 90, 158, 0.12);
  padding: 6px 18px;
  border-radius: 60px;
  color: #00124c;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
main .contact-section .section-header .section-badge i {
  font-size: 0.9rem;
}
main .contact-section .section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1e1a2f;
  margin-bottom: 15px;
}
main .contact-section .section-header h2 span {
  background: linear-gradient(90deg, #0481ca, #2db9f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
main .contact-section .section-header p {
  color: #00124c;
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}
main .contact-section .contact-wrapper {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
main .contact-section .contact-info {
  flex: 1;
  background: #fff;
  border-radius: 32px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(4, 129, 202, 0.12);
}
main .contact-section .contact-info .info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(122, 90, 158, 0.08);
}
main .contact-section .contact-info .info-card:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
main .contact-section .contact-info .info-card .info-icon {
  width: 45px;
  height: 45px;
  background: #0481ca;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
main .contact-section .contact-info .info-card .info-icon i {
  font-size: 1.2rem;
  color: #fff;
}
main .contact-section .contact-info .info-card div h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e1a2f;
}
main .contact-section .contact-info .info-card div .contact-link {
  display: block;
  font-size: 0.85rem;
  color: #6a6a82;
  margin: 4px 0;
  text-decoration: none;
  transition: all 0.2s;
  direction: ltr;
  text-align: right;
}
main .contact-section .contact-info .info-card div .contact-link:hover {
  color: #00124c;
  transform: translateX(-3px);
}
main .contact-section .contact-info .info-card:hover .info-icon {
  background: rgba(122, 90, 158, 0.1);
  transform: scale(1.05);
}
main .contact-section .contact-info .info-card:hover .info-icon i {
  color: #00124c;
}
main .contact-section .contact-info .social-links {
  margin-top: 35px;
  padding-top: 25px;
  text-align: center;
}
main .contact-section .contact-info .social-links span {
  display: block;
  font-size: 0.8rem;
  color: #8a8aa6;
  margin-bottom: 15px;
}
main .contact-section .contact-info .social-links .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
main .contact-section .contact-info .social-links .social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(122, 90, 158, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
main .contact-section .contact-info .social-links .social-icons a i {
  font-size: 1.1rem;
  color: #00124c;
}
main .contact-section .contact-info .social-links .social-icons a:hover {
  background: #00124c;
  transform: translateY(-5px);
}
main .contact-section .contact-info .social-links .social-icons a:hover i {
  color: #fff;
}
main .contact-section .contact-form {
  flex: 1.5;
  background: #fff;
  border-radius: 32px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(4, 129, 202, 0.12);
}
main .contact-section .contact-form .form-header {
  text-align: center;
  margin-bottom: 30px;
}
main .contact-section .contact-form .form-header i {
  font-size: 2rem;
  color: #00124c;
  margin-bottom: 10px;
}
main .contact-section .contact-form .form-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e1a2f;
}
main .contact-section .contact-form .form-header p {
  font-size: 0.8rem;
  color: #8a8aa6;
}
main .contact-section .contact-form form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  main .contact-section .contact-form form .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
main .contact-section .contact-form form .form-group {
  flex: 1;
  position: relative;
}
main .contact-section .contact-form form .form-group input,
main .contact-section .contact-form form .form-group textarea,
main .contact-section .contact-form form .form-group select {
  width: 100%;
  padding: 14px 18px;
  padding-right: 45px;
  border: 1px solid rgba(203, 195, 219, 0.5);
  border-radius: 16px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s;
  background: #fefeff;
}
main .contact-section .contact-form form .form-group input:focus,
main .contact-section .contact-form form .form-group textarea:focus,
main .contact-section .contact-form form .form-group select:focus {
  outline: none;
  border-color: #00124c;
  box-shadow: 0 0 0 3px rgba(122, 90, 158, 0.1);
}
main .contact-section .contact-form form .form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: #6a6a82;
}
main .contact-section .contact-form form .form-group textarea {
  resize: vertical;
  padding-top: 14px;
}
main .contact-section .contact-form form .form-group i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbc3db;
  font-size: 1rem;
  transition: all 0.3s;
  pointer-events: none;
}
main .contact-section .contact-form form .form-group textarea ~ i {
  top: 20px;
  transform: none;
}
main .contact-section .contact-form form .form-group select ~ i {
  left: 18px;
  right: auto;
  transform: translateY(-50%);
}
main .contact-section .contact-form form .form-group:focus-within i {
  color: #00124c;
}
main .contact-section .contact-form form .full-width {
  margin: 20px 0;
}
main .contact-section .contact-form form .submit-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 180px;
  margin: 15px auto 0;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  background: #00124c;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
}
main .contact-section .contact-form form .submit-btn i {
  font-size: 1rem;
  transition: transform 0.35s ease;
}
main .contact-section .contact-form form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}
main .contact-section .contact-form form .submit-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(4, 129, 202, 0.35), 0 4px 12px rgba(0, 18, 76, 0.25);
  gap: 14px;
}
main .contact-section .contact-form form .submit-btn:hover::before {
  left: 150%;
}
main .contact-section .contact-form form .submit-btn:hover i {
  transform: translateX(-5px);
}
main .contact-section .contact-form form .submit-btn:active {
  transform: scale(0.98);
}
main .contact-section .contact-form .form-footer {
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
main .contact-section .contact-form .form-footer i {
  font-size: 0.75rem;
  color: #a0a0b8;
}
main .contact-section .contact-form .form-footer span {
  font-size: 0.7rem;
  color: #a0a0b8;
}
@media (max-width: 992px) {
  main .contact-section {
    padding: 70px 5%;
  }
  main .contact-section .section-header {
    margin-bottom: 40px;
  }
  main .contact-section .section-header h2 {
    font-size: 1.8rem;
  }
  main .contact-section .contact-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  main .contact-section {
    padding: 50px 4%;
  }
  main .contact-section .section-header h2 {
    font-size: 1.5rem;
  }
  main .contact-section .section-header p {
    font-size: 0.85rem;
  }
  main .contact-section .contact-info,
  main .contact-section .contact-form {
    padding: 25px 20px;
  }
  main .contact-section .contact-info .info-card {
    gap: 12px;
  }
  main .contact-section .contact-info .info-card .info-icon {
    width: 38px;
    height: 38px;
  }
  main .contact-section .contact-info .info-card .info-icon i {
    font-size: 1rem;
  }
  main .contact-section .contact-info .info-card div h4 {
    font-size: 0.95rem;
  }
  main .contact-section .contact-info .info-card div .contact-link {
    font-size: 0.8rem;
  }
}

.site-footer {
  background: linear-gradient(180deg, #00124c 0%, rgb(0, 11.9605263158, 50.5) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 25px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(45, 185, 247, 0.15), transparent 35%);
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 2;
}
.site-footer h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 25px;
  font-weight: 700;
}
.site-footer .footer-brand img {
  height: 65px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.site-footer .footer-brand p {
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
}
.site-footer .footer-social {
  display: flex;
  gap: 12px;
}
.site-footer .footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.35s;
}
.site-footer .footer-social a:hover {
  background: #2db9f7;
  transform: translateY(-5px);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 14px;
}
.site-footer ul a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}
.site-footer ul a:hover {
  color: #2db9f7;
  padding-right: 8px;
}
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer .footer-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .footer-contact div i {
  color: #0481ca;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.site-footer .footer-contact div a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.3s ease;
}
.site-footer .footer-contact div a:hover {
  color: #2db9f7;
  padding-right: 4px;
}
.site-footer .store-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.site-footer .store-buttons img {
  height: 45px;
  transition: 0.3s;
}
.site-footer .store-buttons a:hover img {
  transform: translateY(-4px);
}
.site-footer .footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}
.site-footer .footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.site-footer .footer-bottom .footer-links a:hover {
  color: #2db9f7;
}
@media (max-width: 991px) {
  .site-footer {
    text-align: center;
  }
  .site-footer .footer-social,
  .site-footer .store-buttons,
  .site-footer .footer-contact div,
  .site-footer .footer-bottom,
  .site-footer .footer-links {
    justify-content: center;
  }
  .site-footer .footer-contact div {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */