/* Custom Fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;500;700&display=swap"); */
:root {
  --white: #fff;
  --top-bar-bg-color: #f9fafb;
  --primary-blue: #1c40a8;
  --secondary-teal: #70cfbe;
}
body {
  font-family: "Readex Pro", sans-serif;
  direction: rtl;
  text-align: right;
}
header {
  background: var(--white);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.bottom-bar {
  padding-top: 7px;
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--active-link-color);
}
.navbar-nav .nav-link {
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.navbar-nav .nav-link.active {
  color: var(--active-link-color);
  position: relative;
  padding: 8px 0;
}
.navbar-nav .nav-link.active::after {
  position: absolute;
  height: 100%;
  left: 65%;
  top: 40px;
  transform: translateX(-50%);
  content: "";
  background: url(../../Images/navActive.svg) no-repeat;
  width: 40px;
  height: 100%;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--primary-blue);
}
.dropdown-item {
  padding: 12px 24px;
  justify-content: flex-end;
  align-items: center;
  color: var(--primary-blue);
  text-align: right;
  font-family: "Readex Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.dropdown-menu a:hover {
  background: #1e40af;
  color: white;
}
.custom-centered-dropdown {
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1000;
}
.banner {
  /* height: 1024px; */
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.banner h1 {
  font-family: "Readex Pro", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 72px;
  color: white;
}
.banner p {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.banner .btn-primary {
  background-color: var(--secondary-teal);
  border: 1px solid var(--secondary-teal) !important;
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 4px;
  border: 0;
}

.banner .btn-outline-light {
  color: #fff;
  border-color: #fff;
  padding: 20px 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
}
.banner .btn:hover {
  background-color: unset;
}
.banner-content {
  display: flex;
  max-width: 896px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 330px;
  margin-top: 330px;
}
.banner-wave img {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.first-wave {
  position: absolute;
  bottom: -2px;
  z-index: 2;
}
.about-section {
  position: relative;
  padding: 80px 0;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: right;
  margin-bottom: 24px;
  line-height: 40px;
}
.section-text {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 24px;
  /* max-width: 590px; */
  color: var(--Text, #374151);
  margin: 0;
  line-height: 32.5px;
}
.about-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.about-list-item {
  display: flex;
  width: 284px;
  align-items: center;
}
.about-list-item i {
  font-size: 8px;
  margin-left: 8px;
  color: #70cfbe;
}
.rounded-8 {
  border-radius: 20px;
}
.about-wave {
  fill: var(--Light-BG, #f9fafb);
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 2;
}
.consultation-section {
  padding: 80px 0;
  background-color: #f9fafb;
  position: relative;
}

.form-title {
  color: var(--primary-blue);
  text-align: right;
  padding-bottom: 24px;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.form-description {
  color: #4b5563;
  text-align: right;
  padding-bottom: 32px;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  max-width: 592px;
}
.form {
  border-radius: 8px;
  border-bottom: 3px solid var(--70-cfbe, #70cfbe);
  background: var(--ffffff, #fff);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 32px;
}
.form-label {
  display: flex;
  justify-content: right;
  color: var(--Text, #374151);
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 8px;
  margin: 0;
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--Borders, #d1d5d8);
  background: var(--ffffff, #fff);
  display: flex;
  padding: 13px 17px;
  justify-content: flex-end;
  align-items: center;
}
.button-1 {
  background-color: var(--primary-blue);
  border-radius: 4px;
  padding: 12px 32px;

  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: white;
  border: 1px solid var(--primary-blue);
}
.form-wave {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  line-height: 0;
  z-index: 10;
}
.timeline-section {
  padding: 80px 0;
}
.timeline-subtitle {
  color: var(--Text, #374151);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 64px;
  margin: 0;
  line-height: 28px;
}
.timeline-wrapper {
  position: relative;
  padding-bottom: 16px;
}
.timeline-wrapper::after {
  content: "";
  position: absolute;
  top: 0.484px;
  right: 50%;
  transform: translateX(50%);
  width: 4px;
  height: 701px;
  background-color: var(--primary-blue);
  z-index: 1;
}
.timeline-item {
  position: relative;
  padding-top: 32px;
  z-index: 2;
}
.timeline-item::before {
  content: "";
  top: 50%;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: var(--70-cfbe, #70cfbe);
  z-index: 3;
}
.timeline-content {
  background-color: #f7fcfc;
  padding: 24px;
}
.timeline-header {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  margin: 0;
}
.step-title {
  color: var(--primary-blue);
  font-size: 24px;
  margin: 0;
  padding: 0 20px;
}
.step-description {
  color: var(--Text, #374151);
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 24px;
}
.step-icon img {
  width: 24px;
  height: 20px;
}
.step-icon {
  display: flex;
  width: 48px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary-blue);
}
.btn-2 {
  border: 1px solid var(--secondary-teal);
  padding: 20px 40px;
  border-radius: 4px;
  background: var(--secondary-teal);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
}
.timeline-item.right .timeline-content {
  margin-left: 53%;
  margin-right: 0;
  border-radius: 8px;
  border-right: 3px solid var(--70-cfbe, #70cfbe);
  background: var(--Light-BG, #f9fafb);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.timeline-item.left .timeline-content {
  margin-right: 53%;
  margin-left: 0;
  border-radius: 8px;
  border-left: 3px solid var(--70-cfbe, #70cfbe);
  background: var(--Light-BG, #f9fafb);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.timeline-item.left .timeline-content .timeline-header {
  justify-content: end;
}
.second-banner {
  background-color: var(--primary-blue);
  color: white;
  align-items: center;
  position: relative;
}
.banner-num {
  color: var(--70-cfbe, #70cfbe);
  text-align: center;
  font-size: 72px;
  margin: 0;
  padding-bottom: 16px;
  font-weight: 700;
  line-height: 100%;
}
.banner-text {
  color: var(--ffffff, #fff);
  text-align: center;
  font-size: 24px;
  margin: 0;
  font-weight: 400;
  line-height: 32px;
}
.wave-top {
  top: -8px;
  bottom: auto;
}
.wave-bottom {
  bottom: -5px;
  top: auto;
}
section.services {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
section.services h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}
section.services p.section-desc {
  color: var(--Text, #374151);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 64px;
}
.card {
  border-radius: 8px;
  border-bottom: 3px solid var(--70-cfbe, #70cfbe);
  background: var(--Light-BG, #f9fafb);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 32px;
  text-align: center;
}
.card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--primary-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}
.card h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
  color: var(--primary-blue);
}
.card p {
  color: var(--Text, #374151);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card a {
  color: var(--secondary-teal);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}
.card-wave {
  fill: var(--Light-BG, #f9fafb);
  position: absolute;
  bottom: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 56px;
  line-height: 0;
  z-index: 140;
}
.testimonials {
  background-color: #f9fafb;
  text-align: center;
  padding: 64.5px 0px 80px 0px;
  position: relative;
  text-align: center;
}
.testimonials h1 {
  line-height: 40px;
  margin-top: 64.5px;
  text-align: center;
  margin-bottom: 24px;
}
.testimonials p {
  margin-bottom: 64px;
  color: #4b5563;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.5px;
}
.testimonial-box {
  background: #fff;
  border-bottom: 3px solid #70cfbe;
  border-radius: 8px;
  padding: 32px;
  text-align: right;
  height: 530px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonial-wave {
  position: absolute;
  top: -3px;
  width: 100%;
}
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.testimonial-box img {
  border-radius: 50%;
  object-fit: cover;
  padding-left: 16px;
}
.testimonial-box h3 {
  color: var(--primary-blue);
}
.testimonial-box span {
  color: var(--Text, #374151);
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testimonial-box p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 13;
  overflow: hidden;
  color: var(--Text, #374151);
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.stars {
  color: gold;
  font-size: 18px;
}
.poxPagination {
  bottom: 0 !important;
  text-align: center;
}
.poxPaginations {
  bottom: 89px !important;
  text-align: center;
}
.poxPagination span,
.poxPaginations span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #afafaf;
  border: none;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}
.poxPagination span.swiper-pagination-bullet-active,
.poxPaginations span.swiper-pagination-bullet-active {
  background: var(--secondary-teal);
  width: 24px;
  height: 12px;
  border-radius: 9999px;
}
.cta-section {
  background: #ffffff;
  text-align: center;
  position: relative;
}
.cta-section h2 {
  color: var(--primary-blue);
  padding-bottom: 32px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin: 0%;
  padding-top: 160px;
}
.cta-section p {
  color: var(--Text, #374151);
  text-align: center;
  font-family: "Readex Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 120px;
  border: 0;
}
.btn.green {
  background-color: var(--secondary-teal);
  color: white;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 0;
}
.btn.blue {
  background-color: var(--primary-blue);
  color: white;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 0;
}
.site-footer {
  background-color: #1e3a8a;
  color: #f9fafb;
  padding: 32px 0;
}
.gap-12 {
  gap: 12px;
}
.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links a {
  color: #f9fafb;
  text-decoration: none;
}
.footer-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-certifications {
  border-top: 1px solid var(--Grey-Forms, #6b7280);
  display: flex;
  padding-top: 33px;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.footer-certifications img {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: var(--ffffff, #fff);
}
.footer-bottom {
  display: flex;
  width: 100%;
  height: 24px;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
}
.prev {
  border-radius: 9999px !important;
  border: none !important;
  background: rgba(28, 64, 168, 0.7) !important;
  position: absolute !important;
  color: white !important;
  right: 20px !important;
  top: 376px !important;
  display: flex !important;
  width: 48px !important;
  height: 48px !important;
  justify-content: center !important;
  align-items: center !important;
}
.swiper-button-prev::after {
  font-size: 17.5px !important;
  width: 10px !important;
}
.next {
  border-radius: 9999px !important;
  border: none !important;
  background: rgba(28, 64, 168, 0.7) !important;
  position: absolute !important;
  color: white !important;
  left: 20px !important;
  top: 376px !important;
  display: flex !important;
  width: 48px !important;
  height: 48px !important;
  justify-content: center !important;
  align-items: center !important;
}
.swiper-button-next::after {
  font-size: 17.5px !important;
  width: 10px !important;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.hidden {
  display: none;
}
.modal-overlay .modal-contentt {
  position: relative;
  background-color: white;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  border-bottom: 3px solid var(--70-cfbe, #70cfbe);
}
.popup-title {
  line-height: 36px;
  font-size: 30px;
  color: var(--primary-blue);
}
.discount-percent {
  text-align: center;
  font-family: "Readex Pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  color: var(--secondary-teal);
}
.cta-button {
  background-color: var(--primary-blue);
  color: white;
  border-radius: 4px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: "Readex Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  border: 0;
  padding-top: 8px;
}
.close-button {
  position: absolute;
  top: 20px;
  width: 15px;
  left: 16px;
  height: 20px;
  background-color: white;
  border: none;
  color: #6b7280;
  padding: 0;
}
/* About page style */
.bannerSlide {
  height: 350.188px !important;
  background-repeat: no-repeat;
  background-size: cover;
}
.bannarData {
  position: relative;
  height: 89%;
  z-index: 2;
}
.bannarData h1,
.bannarData h2 {
  color: var(--white);
}
.bannarData h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}
.bannarData h2 {
  font-weight: 400;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.9;
}
.banner-wave {
  position: absolute;
  z-index: 3;
  bottom: -2px;
  width: 100%;
}

.banner-wave img {
  width: 100%;
}
.bannerPagination {
  bottom: 25% !important;
}
.bannerPagination span {
  width: 80px;
  height: 4px;
  opacity: 1;
  border-radius: 9999px;
  background: var(--secondary-teal);
}
.bannerPagination span.swiper-pagination-bullet-active {
  opacity: 0.6;
  background: var(--white);
  width: 40px;
  height: 4px;
}

.breadcrumb {
  padding: 16px 0;
}
.breadcrumb a {
  text-decoration: none;
  color: var(--Text, #374151);
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: color 0.3s ease;
}
.breadcrumb span {
  margin: 0 8px;
  color: var(--Text, #374151);
  width: 7.5px;
  height: 12px;
  top: 2px;
}
.breadcrumb a.active {
  color: var(--1-c-40-a-8, #1c40a8);
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.about-sectionn {
  margin: 80px 0;
}
.f-14 {
  font-size: 14px;
}
.about-sectionn .card {
  padding: 36.38px;
}
.step-iconn {
  width: 64px;
  height: 64px;
  display: flex;
  padding: 4px;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  border: 4px solid var(--ffffff, #fff);
  background: var(--1-c-40-a-8, #1c40a8);
}
.about-sectionn .card .icon {
  margin-bottom: 26.78px;
}
.about-sectionn .card h3 {
  margin-bottom: 17.68px;
}
.about-contenttt {
  max-width: 590px;
}
.section-titlee {
  color: var(--1-c-40-a-8, #1c40a8);
  text-align: right;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 26.78px;
}
.section-titleee {
  margin-bottom: 35.71px;
}
.about-contentt {
  max-width: 1000px;
  margin: 0 auto;
}
.section-textt {
  color: var(--Text, #374151);
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 26.78px;
}
.heigh {
  height: 80px;
  margin-bottom: 26.783;
}

.success-content {
  padding: 80px 53.565px;
  border-radius: 16px;
  background: var(
    --Gradinet-dark,
    linear-gradient(90deg, #1e3a8a 0%, #14b8a6 100%)
  );
  text-align: center;
  margin: 80px 0px;
}
.success-content h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.success-content p {
  font-size: 22.31px;
  color: #f4f4f4;
  max-width: 850px;
  margin-bottom: 35.71px;
  line-height: 36.268px;
  opacity: 0.9;
  width: 1231px;
}
.success-buttons {
  display: flex;
  justify-content: center;
  gap: 17.86px;
  flex-wrap: wrap;
}
.success-buttons .btn {
  background: #fff;
  color: #1c40a8;
  padding: 22.319px 44.638px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4.464px;
  border: 1px solid var(--Blue);
  display: flex;
  align-items: center;
  gap: 8.93px;
  border: 0;
}
.success-buttons .primary .secondary {
  color: #1c40a8;
}
.footer-wave {
  width: 100%;
  line-height: 0;
  margin-bottom: -3px;
  padding-top: 40px;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}
/* Team page style */
.team {
  padding: 32px 16px;
  gap: 32px;
  border-radius: 24px;
  background: var(--ffffff, #fff);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  justify-content: center;
}
.department-tabs {
  justify-content: center;
  gap: 16px;
  border-bottom: 2px #6b7280 solid;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  margin-bottom: 32px;
}
.servicestabs {
  width: max-content;
  margin-bottom: 32px;
  gap: 16px;
  border-bottom: 1px solid #6b7280;
}
.servicestabs .nav-link {
  color: #6b7280;
  font-weight: 700;
  border: none;
  font-size: 18px;

  font-weight: 700;
  background: none;
  padding: 12px 24px;
  position: relative;
  line-height: 28px;
}
.servicestabs .nav-link.active {
  color: var(--primary-blue);
}
.servicestabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
}
.tab-content {
  padding-top: 32px;
}
.team-hero {
  position: relative;
  overflow: hidden;
}
.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 16px;
  background: linear-gradient(
    0deg,
    rgba(30, 58, 138, 0.54) 0%,
    rgba(0, 0, 0, 0) 93.27%
  );
  border-bottom: 3px solid var(--70-cfbe, #70cfbe);
}
.team-overlay {
  position: absolute;
  color: white;
  bottom: 0;
  padding: 36px 12px;
  z-index: 2;
}
.team-overlay h1 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: white;
}
.team-desc {
  color: var(--Text, #374151);
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  margin-top: 16px !important;
}
.tab-button {
  background-color: white;
  border: none;
  color: var(--Grey-Forms, #6b7280);
  font-family: "Readex Pro";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding: 12px 24px;
}
.tab-button.active {
  color: var(--primary-blue);
  border-bottom: 5px solid var(--1-c-40-a-8, #1c40a8);
}
.team-card .team-inner {
  position: relative;
  perspective: 1000px;
}
.team-card .team-front,
.team-card .team-back {
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}
.team-card .team-front {
  transform: rotateY(0deg);
}
.team-card .team-back {
  transform: rotateY(180deg);
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 16px;
  padding: 20px;
  overflow-y: auto;
}
/* When flipped */
.team-card.flipped .team-front {
  transform: rotateY(-180deg);
}
.team-card.flipped .team-back {
  transform: rotateY(0deg);
}
.close-b {
  color: var(--primary-blue, #1c40a8);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.serv {
  max-width: 1234px;
  margin-bottom: 80px;
  color: var(--Text, #374151);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
/* services page style */
.therapy-card {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 64px;
}
.therapy-text {
  padding: 32px;
}
.therapy-text p {
  color: var(--Text, #374151);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  max-width: 1190px;
}
.therapy-img {
  border-radius: 20px 0 0 20px;
  max-width: 410.66px;
  display: block;
}
.therapy-imgg {
  border-radius: 0 20px 20px 0;
  max-width: 410.66px;
  display: block;
}
/* blog page style */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 2fr));
  gap: 32px;
  padding: 32px 0;
  margin: 80px 0;
}
.card-img {
  border-radius: 20px 20px 0 0;
}
.info-card {
  border-radius: 14.05px;
  /* height: 510px; */

  background: var(--ffffff, #fff);
  box-shadow: 0 4.683px 7.025px -4.683px rgba(0, 0, 0, 0.1),
    0 11.708px 17.562px -3.512px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.highttt {
  height: 480px !important;
}
.related {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  overflow: hidden;
  padding-bottom: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #4b5563 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.card-body {
  padding: 28.099px;
}
.card-bodyy {
  padding: 26.783px;
}
.card-tags {
  margin-bottom: 14.05px;
}
.tag {
  padding: 4.683px 14.05px;
  border-radius: 11706.819px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}
.tag-blue {
  background: var(--Blue-shade, #eff6ff);
  color: var(--primary-blue);
}
.tag-green {
  background: var(--Green-shade, #e8ffff);
  color: #0f766e;
}
.card-title {
  margin-bottom: 14.05px;
  color: var(--1-c-40-a-8, #1c40a8);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.heightt {
  height: 53px;
}

.card-desc {
  color: var(--Text, #374151);
  font-size: 18px;
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: 400;
  line-height: 28px;
  max-width: 334px;
  margin-bottom: 18.733px;
}
.heightt .fixText {
  -webkit-line-clamp: 2;
}
.read-more {
  text-decoration: none;
  color: var(--1-c-40-a-8, #1c40a8);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.read-time {
  color: var(--70-cfbe, #70cfbe);
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  direction: rtl;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid var(--1-c-40-a-8, #1c40a8);
  background-color: white;
  color: var(--1-c-40-a-8, #1c40a8);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-btn.active {
  background: var(--1-c-40-a-8, #1c40a8);
  color: white;
}
.card-time {
  color: var(--Grey-Forms, #6b7280);
  text-align: right;
  padding-right: 13.391px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
/* blog page style */
.event-section {
  margin: 80px 0px;
}
.event-hero {
  height: 446px;
  position: relative;
}
.event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 20px 20px 0 0;
}
.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  right: 0;
  bottom: 0.377px;
  color: white;
  padding: 35.71px;
  z-index: 2;
}
.hero-overlay h1 {
  font-family: "Readex Pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 17.855px;
  color: white;
}
.hero-overlay span {
  font-size: 18px;

  padding-left: 26.928px;
  color: white !important;
}
/* Article Body */
.event-body {
  padding: 32px;
}
.related-news {
  margin-top: 55px;
}
.news-title {
  color: var(--1-c-40-a-8, #1c40a8);
  text-align: right;
  font-family: "Readex Pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 35.71px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.news-card {
  border-radius: 16px;
  background: var(--Light-BG, #f9fafb);
  padding: 26.783px;
  min-height: 242px;
}
.info-item {
  border-radius: 16px;
  background: var(--Light-BG, #f9fafb);
  margin-bottom: 32px;
  padding: 32px;
  gap: 16px;
  display: flex;
}
.info-text h6 {
  color: var(--1-c-40-a-8, #1c40a8);
  font-family: "Readex Pro";
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 8px;
}
.info-text p {
  color: var(--Text, #374151);
  font-family: "Readex Pro";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.Jobs {
  margin: 80px 0;
}
.charCount {
  color: var(--Grey-Forms, #6b7280);
  text-align: right;
  font-family: "Readex Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.team-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.95);
  color: white;
  padding: 20px;
  z-index: 12;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
}
.team-card.active .team-hover-content {
  opacity: 1;
  pointer-events: auto;
}
.close-btn {
  margin-top: 20px;
  background-color: #70cfbe;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
}
.greyBtn {
  border-radius: 4px;
  background: #d1d5db;
  border: 0;
}
.input-group {
  position: relative;
  margin-bottom: 24px;
  align-items: center;
  border-radius: 8px;
}
.input-group input {
  width: 100%;
  padding: 13px 49px 13px 17px !important;
  border-radius: 8px !important;
  border: 1px solid var(--Borders, #d1d5db);
  background: var(--ffffff, #fff);
  font-size: 16px;
}
.input-group span {
  position: absolute;
  color: #6b7280;
}
.signup {
  margin: 64px 0;
}
.options-row {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
}
.forgot-password {
  color: var(--secondary-teal);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #6b7280;
  z-index: 2;
}
.or-text {
  background-color: white;
  padding: 0 16px;
  color: var(--Grey-Forms, #6b7280);
  font-size: 14px;
  z-index: 3;
  position: relative;
}
/* --- Social Login --- */
.social-login button {
  border-radius: 4px;
  border: 1px solid var(--Borders, #d1d5db);
  background: var(--ffffff, #fff);
  margin-bottom: 12px;
  padding: 13px 17px;
  justify-content: center;
  align-items: center;
  color: var(--Text, #374151);
  font-size: 16px;
  width: 100%;
  font-weight: 400;
}
.social-login button:hover {
  border: 1px solid var(--Borders, #d1d5db);
}
.signup-link a {
  color: var(--secondary-teal);
  text-decoration: none;
  font-weight: 700;
}
.feature-item {
  color: var(--Grey-Forms, #6b7280);
  text-align: center;
  font-size: 14px;
}
.icon-eye {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  cursor: pointer;
  z-index: 3;
}
.icon-lock {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  cursor: pointer;
  z-index: 3;
}
.condition {
  margin-top: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ffffff, #fff);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.icon-login {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--Blue-shade, #eff6ff);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}
.profile {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(239, 246, 255, 0.3) 100%
    ),
    url("../../Images/DIV-35.svg");
  position: relative;
  overflow: hidden;
  height: 205px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 44px 0;
}
.title {
  padding-bottom: 53.57px;
}
.greenicon {
  background-color: var(--secondary-teal) !important;
}
.formmodel {
  border-radius: 16px;
}
.pageblue {
  color: var(--primary-blue);
}
.clockgreen {
  color: var(--secondary-teal);
}
.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 20px 20px;
}
.topb {
  bottom: 9px;
  position: relative;
}
.bottomb {
  bottom: -9px;
  position: relative;
}
.brow {
  padding: 70px 0 74px 0;
}
.back {
  background: linear-gradient(
    0deg,
    rgba(30, 58, 138, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: 16px;
  border-bottom: 3px solid #70cfbe;
}
.min {
  min-width: 448px;
}
.pgray {
  color: #555 !important;
}
.loginicon {
  width: 80px !important;
  height: 80px !important;
}
.list-group-item {
  border-radius: 8px !important;
  padding: 12px 16px;
}
.list-group-item.active {
  border-radius: 8px;
  background: var(--1-c-40-a-8, #1c40a8);
}
.form-switch .form-check-input:checked {
  background-color: var(--secondary-teal);
  width: 44px;
  height: 24px;
  padding: 0 2px;
  border-color: var(--secondary-teal);
}
.form-switch .form-check-input {
  width: 44px;
  height: 24px;
  padding: 0 2px;
  color: #fff;
  background-color: #d1d5db;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.informartion {
  margin: 48px 0;
}
.rowGapInformation {
  row-gap: 24px;
}
