@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&amp;family=Aref+Ruqaa:wght@400;700&amp;display=swap');

@font-face {
  font-family: 'Cairo';
  src: url('/assets/fonts/Cairo-VariableFont_slnt,wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: 'JannaLT';
  src: url('../font/alfont_com_Janna-LT.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */

* {
  /* font-family: 'JannaLT', sans-serif; */
  font-family: 'Cairo', sans-serif;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

:root {
  /* --main-color: #657ED4; */
  --main-hover-color: #486bdd;
  --main-color: #374687;
  --main-hover-color: #2e3b75;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-size: 20px !important;
}

.bg-logo {
  position: absolute;
  bottom: 100px;
  right: 10px;
  height: 200px;
  opacity: .7;
}

.bg-white-pattern {
  background-image: url('../images/pattern1.png');
  /* background-repeat: repeat;
  animation: movePattern 20s linear infinite; */
}


.bg-gray-pattern {
  background-image: url('../images/gray.png');
  /* background-repeat: repeat;
  animation: movePattern 20s linear infinite; */
}

.bg-blue-pattern {
  background-image: url('../images/blue.html');
  /* background-repeat: repeat;
  animation: movePattern 20s linear infinite; */
}

@keyframes movePattern {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 300px 0;
  }
}


.bg-logo.left {
  left: 10px;
  right: unset;
}


@media (min-width: 1700px) {
  .bg-logo {
    right: 30px;
    height: 300px;
  }
}

@media (max-width: 1600px) {
  .bg-logo {
    display: none;
  }
}

.section-padding {
  padding: 80px 0;
}

.btn-theme {
  background-color: var(--main-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-theme:hover {
  transform: translateY(-3px);
  background-color: var(--main-hover-color);
}

.btn-theme-white {
  background-color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  color: var(--main-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-theme-white:hover {
  transform: translateY(-3px);
}


/* //////////////////////////  navbar //////////////////////// */


.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 40px;
  width: 100%;
  background-color: #0000003e;
  transition: background-color 0.3s ease;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.75);
  background-color: rgb(55, 70, 135, 0.75);
}

.navbar.sticky .btn-theme {
  background-color: #fff;
  color: #000;
}

.navbar .logo {
  height: 90px;
}

@media (max-width: 767px) {
  .navbar .logo {
    height: 80px;
  }
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  margin: 0 7px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.navbar.sticky .navbar-nav .nav-link:hover {
  color: #fff !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  right: 0;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    text-align: start;
  }

  .navbar .btn-theme {
    margin: 0 auto;
    width: 250px;
    display: block;
    margin-bottom: 20px;
  }
}

/* //////////////////////////  breadcrumb //////////////////////// */

.breadcrumb-wrapper {
  background: rgb(54, 54, 54);
  padding: 210px 0 70px;
  border-bottom: 1px solid #ddd;
  position: relative;
  background-size: cover;
  background-position: center;
}

.breadcrumb-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.breadcrumb-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb-menu li {
  color: #666;
}

.breadcrumb-menu li a {
  color: #fff;
  text-decoration: none;
  transition: .2s;
}

.breadcrumb-menu li a:hover {
  color: var(--main-hover-color);
}

.breadcrumb-menu i {
  color: var(--main-hover-color);
}

.breadcrumb-menu .active {
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

@media (max-width: 567px) {
  .breadcrumb-wrapper {
    padding: 190px 0 50px;
  }

  .breadcrumb-title {
    font-size: 27px;
  }
}

/* ////////////////////////  hero section //////////////////////// */

.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Zoom in animation */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2) translate(-20px, -20px);
  }
}

/* For multiple images - hidden by default */
.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: zoomIn 20s ease-out infinite;
}

.hero-images img.active {
  opacity: 1;
  z-index: 1;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #152f336b;
  z-index: 1;
}

.hero-logo-1 {
  position: absolute;
  top: 100px;
  left: 50px;
  z-index: 2;
  height: 350px;
  opacity: 0.7;
}

.hero-logo-2 {
  position: absolute;
  bottom: 20px;
  right: 50px;
  z-index: 1;
  height: 350px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

@media (max-width: 767px) {
  .hero-logo-1 {
    display: none;
  }

  .hero-logo-2 {
    height: 250px;
    right: 20px;
  }
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
  z-index: 2;
  position: relative;
}

.hero-text {
  width: 100%;
  max-width: 960px;
  position: relative;
  top: 50px;
}

.hero-text h1 {
  font-size: 55px;
  font-weight: 600;
  color: white;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero-text h1 span {
  display: block;
}

.hero-text h1 span:nth-child(1) {
  margin-right: -120px;
}

.hero-text h1 span:nth-child(2) {
  margin-left: -120px;
}

.hero-content .hero-action {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-text .description {
  font-size: 70px;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: Aref Ruqaa;
}

.hero-content .hero-action .play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .hero-text {
    top: 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text .description {
    font-size: 35px;
  }
}


/* ////////////////////////  about section //////////////////////// */
.about-section {
  --about-accent: var(--main-color, #374687);
  --about-text: #142235;
  --about-muted: #7a818d;
  background:
    radial-gradient(circle at 20% 18%, rgba(55, 70, 135, .07), transparent 30%),
    radial-gradient(circle at 78% 76%, rgba(55, 70, 135, .05), transparent 28%),
    linear-gradient(180deg, #fbfbfc 0%, #f6f6f7 100%);
  overflow: hidden;
}

.about-section::after {
  content: "";
  display: none;
}

.about-section .container {
  position: relative;
  z-index: 2;
  max-width: 1430px;
}

.about-layout {
  direction: ltr;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  padding: 28px clamp(18px, 3vw, 42px);
}

.about-copy {
  order: 2;
  direction: rtl;
  max-width: 620px;
  justify-self: center;
}

html[dir="ltr"] .about-copy {
  direction: ltr;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--about-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-eyebrow::after {
  content: "";
  width: 64px;
  height: 2px;
  background: var(--about-accent);
  opacity: .55;
}

.about-copy h2 {
  color: var(--about-text);
  font-size: clamp(38px, 3.6vw, 62px);
  line-height: 1.28;
  font-weight: 900;
  margin: 0 0 30px;
}

.about-copy h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  background: var(--about-accent);
  margin-top: 24px;
}

.about-desc {
  max-width: 590px;
  color: var(--about-muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 2;
  margin-bottom: 34px;
}

.about-desc p {
  margin: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 590px;
}

.about-highlights .box {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 18px 38px rgba(25, 32, 50, .08);
  backdrop-filter: blur(8px);
}

.about-highlights .feature-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
}

.about-highlights .feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.about-highlights .text h3 {
  color: var(--about-accent);
  font-size: clamp(16px, 1.1vw, 19px);
  margin: 0 0 8px;
  font-weight: 800;
}

.about-highlights .text p {
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.about-visual {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .about-image {
  position: relative;
  width: 460px;
  height: 590px;
  max-width: 100%;
  padding: 0;
  isolation: isolate;
}

.about-section .about-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 70px;
  width: 92px;
  height: 430px;
  background: linear-gradient(180deg, #233779 0%, var(--about-accent) 100%);
  border-radius: 22px 0 28px 22px;
  box-shadow: 0 28px 58px rgba(25, 39, 98, .18);
  z-index: 1;
}

.about-section .about-image img {
  display: block;
}

.about-photo-svg {
  position: absolute;
  left: 48px;
  top: 0;
  width: 430px;
  height: 560px;
  overflow: visible;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .14));
}

.about-photo-border {
  fill: #fff;
}

.about-photo-svg image {
  filter: grayscale(.55) saturate(.7) brightness(.95) contrast(1.02);
}

.about-image-dots {
  position: absolute;
  left: 2px;
  top: 438px;
  width: 92px;
  height: 120px;
  background: radial-gradient(circle, rgba(35, 55, 121, .82) 0 1.35px, transparent 2px) 0 0/16px 16px;
  opacity: .72;
  z-index: 0;
}

.about-gold-corner {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

.about-gold-corner-top {
  right: -10px;
  top: 8px;
  width: 105px;
  height: 96px;
  border-top: 2px solid rgba(189, 154, 77, .9);
  border-right: 2px solid rgba(189, 154, 77, .9);
  border-radius: 0 56px 0 0;
  transform: translate(4px, -5px) rotate(-8deg);
}

.about-page-section {
  padding-top: clamp(68px, 7vw, 112px);
}

.about-page-features .vision-layout {
  grid-template-columns: minmax(0, 690px) minmax(300px, 460px);
}

.about-page-feature-mark {
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .92) 0 45%, rgba(255, 255, 255, .62) 46% 58%, transparent 59%),
    linear-gradient(135deg, rgba(55, 70, 135, .10), rgba(189, 154, 77, .08));
  box-shadow: 0 24px 54px rgba(20, 32, 54, .08);
}

.about-page-feature-mark img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.about-certificates-section {
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.about-certificates-section h2 {
  color: #071f42;
}

.about-certificates-section .sertificate-swiper {
  padding: 8px 58px 18px;
}

.about-certificates-section .swiper-button-next,
.about-certificates-section .swiper-button-prev {
  width: 42px;
  height: 42px;
  color: #314695;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(49, 70, 149, .22);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(20, 32, 54, .18);
}

.about-certificates-section .swiper-button-next::after,
.about-certificates-section .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translatey(10px);
  }

  100% {
    transform: translate(0, 0);
  }
}



.about-section .heading {
  font-size: 16px;
  color: var(--main-color);
}

.about-section .title {
  font-size: 25px;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 16px;
}

.about-section .desc {
  font-size: 18px;
  color: #676767;
  margin-bottom: 16px;
}

.about-section .about-list li {
  font-size: 16px;
  font-weight: bold;
  color: #515151;
  padding: 4px 0;
}

.about-section .about-list li i {
  color: var(--main-color);
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .about-layout {
    direction: ltr;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 20px 12px;
  }

  .about-copy {
    order: 2;
    max-width: none;
    justify-self: stretch;
  }

  .about-visual {
    order: 1;
  }

  .about-section::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 36px 0;
  }

  .about-copy h2 {
    font-size: 32px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights .box {
    flex-direction: row;
    text-align: start;
  }

  .about-section .about-image {
    width: 460px;
    height: 590px;
    transform: scale(.68);
    transform-origin: center;
    margin-block: -92px;
  }
}


/* ////////////////////////  vision section //////////////////////// */
.vision-section {
  --vision-accent: var(--main-color, #374687);
  --vision-text: #202020;
  --vision-muted: #6d717a;
  --vision-border: rgba(55, 70, 135, .48);
  background:
    radial-gradient(circle at 16% 36%, rgba(55, 70, 135, .06) 0 18%, transparent 34%),
    linear-gradient(180deg, #fbfbfc 0%, #f5f5f6 52%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 8vw, 128px);
}

.vision-section::before,
.vision-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .08;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.vision-section::before {
  inset-inline-start: -40px;
  top: 22px;
  width: 280px;
  height: 390px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(25, 31, 52, .45) 49% 51%, transparent 52%),
    radial-gradient(ellipse at 50% 78%, transparent 0 42%, rgba(25, 31, 52, .4) 43% 45%, transparent 46%),
    radial-gradient(ellipse at 50% 12%, transparent 0 34%, rgba(25, 31, 52, .32) 35% 37%, transparent 38%);
}

.vision-section::after {
  content: "المكتب\A القانوني\A للمحاماة";
  white-space: pre;
  inset-inline-end: 16px;
  top: 190px;
  width: 220px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}

.vision-section .container {
  position: relative;
  z-index: 2;
  max-width: 1540px;
}

.vision-heading {
  max-width: 900px;
  margin: 0 auto 44px;
}

.vision-heading h2 {
  color: var(--vision-text);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.vision-subtitle {
  color: var(--vision-muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

.vision-subtitle p {
  margin-bottom: 0;
}

.vision-divider {
  display: block;
  width: 190px;
  height: 18px;
  margin: 18px auto 0;
  position: relative;
}

.vision-divider::before,
.vision-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vision-accent), transparent);
}

.vision-divider::before {
  right: 0;
}

.vision-divider::after {
  left: 0;
}

.vision-divider {
  background:
    radial-gradient(circle, var(--vision-accent) 0 2px, transparent 3px) center / 18px 18px no-repeat,
    linear-gradient(45deg, transparent 38%, var(--vision-accent) 39% 43%, transparent 44% 56%, var(--vision-accent) 57% 61%, transparent 62%) center / 28px 18px no-repeat;
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(520px, 620px);
  align-items: center;
  justify-content: center;
  gap: clamp(54px, 6vw, 96px);
}

.vision-copy {
  min-height: 480px;
  padding: 54px 0;
  position: relative;
}

.vision-line {
  position: absolute;
  inset: 12px 8px 10px 22px;
  pointer-events: none;
}

.vision-line::before,
.vision-line::after {
  content: "";
  position: absolute;
  border-color: var(--vision-border);
  border-style: solid;
}

.vision-line::before {
  top: 0;
  right: 0;
  width: 64%;
  height: 50%;
  border-width: 2px 2px 0 0;
  border-radius: 34px 34px 0 0;
}

.vision-line::after {
  left: 0;
  bottom: 0;
  width: 82%;
  height: 52%;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 34px 34px;
}

.vision-line span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--vision-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px #f8f8f9;
}

.vision-line span:nth-child(1) {
  top: -3px;
  right: 63%;
}

.vision-line span:nth-child(2) {
  top: 50%;
  right: -3px;
}

.vision-line span:nth-child(3) {
  bottom: -3px;
  left: 82%;
}

.vision-section .info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
  padding: 26px 28px;
}

.vision-section .info .box {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100%, 720px);
  min-height: 166px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 22px;
  padding: 30px 38px;
  position: relative;
  box-shadow: 0 20px 46px rgba(18, 24, 40, .08);
  backdrop-filter: blur(8px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.vision-section .info .box:nth-child(even) {
  margin-inline-start: auto;
}

.vision-section .info .box:hover {
  transform: translateY(-5px);
  border-color: rgba(55, 70, 135, .32);
  box-shadow: 0 26px 56px rgba(18, 24, 40, .13);
}

.vision-section .info .box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(55, 70, 135, .06);
  pointer-events: none;
}

.vision-section .feature-icon {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f8f9ff;
  border: 1px dashed rgba(55, 70, 135, .38);
  box-shadow: 0 11px 24px rgba(24, 35, 78, .13);
  display: grid;
  place-items: center;
}

.vision-section .feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vision-section .info .box .text {
  flex: 1;
}

.vision-section .info .box .text h3 {
  color: var(--vision-accent);
  margin-bottom: 8px;
  font-size: clamp(19px, 1.4vw, 24px);
  font-weight: 800;
}

.vision-section .info .box .text p {
  line-height: 1.9;
  color: var(--vision-muted);
  font-size: clamp(14px, 1.05vw, 17px);
  margin: 0;
}

.vision-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-section .about-image {
  width: min(100%, 650px);
  height: 690px;
  position: relative;
  padding: 0;
  isolation: isolate;
}

.vision-section .about-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 112px;
  width: 132px;
  height: 438px;
  background: linear-gradient(180deg, #233779 0%, var(--vision-accent) 100%);
  border-radius: 22px 0 28px 22px;
  box-shadow:
    0 28px 58px rgba(25, 39, 98, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  z-index: 1;
}

.vision-section .about-image::after {
  content: "";
  position: absolute;
  left: 62px;
  top: 4px;
  width: 575px;
  height: 640px;
  border-radius: 42px;
  background: radial-gradient(circle at 50% 52%, rgba(35, 55, 121, .14), transparent 66%);
  filter: blur(22px);
  z-index: 0;
}

.vision-image-dots {
  position: absolute;
  left: 4px;
  top: 520px;
  width: 104px;
  height: 142px;
  background: radial-gradient(circle, rgba(35, 55, 121, .86) 0 1.45px, transparent 2px) 0 0 / 17px 17px;
  opacity: .9;
  z-index: 0;
}

.vision-symbol-badge {
  position: absolute;
  left: 34px;
  top: 58px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--vision-accent);
  background: rgba(248, 250, 255, .96);
  border: 1px solid rgba(255, 255, 255, .96);
  box-shadow: 0 20px 36px rgba(24, 35, 78, .14);
  z-index: 6;
}

.vision-symbol-badge::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px dashed rgba(55, 70, 135, .20);
}

.vision-symbol-badge::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bd9a4d;
  box-shadow: 24px 54px 0 #bd9a4d;
  right: -10px;
  top: 24px;
}

.vision-symbol-badge i {
  font-size: 36px;
}

.vision-gold-corner {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

.vision-gold-corner-top {
  right: 2px;
  top: 10px;
  width: 128px;
  height: 114px;
  border-top: 2px solid rgba(189, 154, 77, .95);
  border-right: 2px solid rgba(189, 154, 77, .95);
  border-radius: 0 62px 0 0;
  transform: translate(10px, -8px) rotate(-8deg);
}

html[dir="rtl"] .vision-gold-corner-top {
  transform: translate(10px, -8px) rotate(-8deg);
}

.vision-gold-corner-bottom {
  left: 82px;
  bottom: 32px;
  width: 255px;
  height: 42px;
  border-bottom: 2px solid rgba(189, 154, 77, .85);
  border-left: 2px solid rgba(189, 154, 77, .85);
  border-radius: 0 0 0 34px;
}

.vision-years-card {
  position: absolute;
  right: 4px;
  bottom: 52px;
  min-width: 286px;
  height: 94px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 24px 44px rgba(18, 24, 40, .14);
  backdrop-filter: blur(12px);
  z-index: 7;
}

.vision-photo-svg {
  position: absolute;
  left: 68px;
  top: 0;
  width: 560px;
  height: 620px;
  overflow: visible;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .14));
}

.vision-photo-border {
  fill: #fff;
}

.vision-photo-svg image {
  filter: grayscale(.78) saturate(.48) brightness(1.16) contrast(.90);
}

.vision-years-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #bd9a4d;
  background: #fff;
  box-shadow: 0 10px 22px rgba(18, 24, 40, .08);
}

.vision-years-icon i {
  font-size: 25px;
}

.vision-years-divider {
  width: 1px;
  height: 52px;
  background: #d9dce8;
}

.vision-years-copy {
  display: grid;
  gap: 4px;
  color: var(--vision-accent);
  line-height: 1;
}

.vision-years-copy strong {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.vision-years-copy small {
  color: #8a8f9c;
  font-size: 14px;
  font-weight: 600;
}

.vision-section .bg-logo {
  bottom: auto;
  top: 145px;
  right: auto;
  left: 34px;
  height: 300px;
  opacity: .035;
}

@media (max-width: 1199px) {
  .vision-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
    gap: 32px;
  }

  .vision-section .info .box {
    padding: 26px;
  }

  .vision-section .about-image {
    width: 650px;
    height: 690px;
    transform: scale(.78);
    transform-origin: center;
    margin-block: -72px;
  }

  .vision-symbol-badge {
    width: 96px;
    height: 96px;
  }

  .vision-years-card {
    min-width: 250px;
    height: 88px;
    padding: 16px 22px;
  }
}

@media (max-width: 991px) {
  .vision-layout {
    grid-template-columns: 1fr;
  }

  .vision-copy {
    order: 2;
    min-height: auto;
    padding: 0;
  }

  .vision-visual {
    order: 1;
    padding-bottom: 0;
    min-height: 520px;
  }

  .vision-line {
    display: none;
  }

  .vision-section .info {
    padding: 0;
  }

  .vision-section .info .box,
  .vision-section .info .box:nth-child(even) {
    width: 100%;
    margin-inline-start: 0;
  }

  .vision-section::before,
  .vision-section::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .vision-heading {
    margin-bottom: 28px;
  }

  .vision-section .info .box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: 0;
    padding: 24px 18px;
  }

  .vision-section .feature-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .vision-section .feature-icon img {
    width: 42px;
    height: 42px;
  }

  .vision-section .about-image {
    transform: scale(.52);
    margin-block: -164px;
  }

  .vision-visual {
    min-height: 380px;
  }
}

/* //////////////////////////  services section //////////////////////// */
.services-section .box {
  box-shadow: 0 2px 15px rgb(0, 0, 0, 10%);
  border-radius: 6px;
  overflow: hidden;
  transition: .3s;
  position: relative;
  z-index: 1;
}

/* Initial hidden state */
.services-section .box {
  opacity: 0;
  transform: translateY(40px);
}

/* When visible */
.services-section .box.show {
  opacity: 1;
  transform: translateY(0);
}

.services-section .box .image-box {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.services-section .box img {
  transition: .3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section .box:hover img {
  transform: scale(1.07) rotate(2deg);
}

.services-section .box .content {
  padding: 20px;
  background-color: #fff;
}

.services-section .box .content h3 {
  margin: 0;
  font-size: 20px;
  color: #000;
  font-weight: 500;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: calc(1.3em * 2);
  min-height: calc(1.3em * 2);
}

.services-section .box .content p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #5e5e5e;
}

.services-section .box .info {
  padding: 20px;
  border-top: 1px solid #e6e6e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.services-section .box .info a {
  color: var(--main-color);
  font-weight: bold;
}

.services-section .box .info i {
  color: var(--main-color);
}

.services-section .box:hover .info i {
  animation: moving-arrow 0.6s linear infinite;
}


@media (max-width: 767px) {
  .services-section .box .content h3 {
    font-size: 16px;
  }

  .services-section .box .content p {
    font-size: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
  }
}


/* //////////////////////////  service details section //////////////////////// */

.service-details-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.service-details-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
}

.service-details-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--main-color);
}

.other-services-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.other-services-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.other-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.other-service-item {
  margin-bottom: 15px;
}

.other-service-item a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: #333;
  background: #f8f8f8;
  padding: 12px;
  border-radius: 10px;
  transition: .3s;
}

.other-service-item a:hover {
  background: #e8e8e8;
  transform: translateX(-4px);
}

.other-service-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.other-service-info h4 {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  color: var(--main-color);
}

.other-service-info p {
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
}

@media (max-width:567px) {
  .service-details-title {
    font-size: 22px;
  }

  .service-details-card {
    padding: 20px;
  }
}


/* ////////////////////////  tv videos section //////////////////////// */
.videos-section .single-video-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  /* padding: 10px; */
  background-color: var(--main-color);
}

.videos-section .single-video-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.videos-section .single-video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

/* //////////////////////  contact page //////////////////////// */
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.country-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--main-color);
}

.country-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.country-flag {
  width: 60px;
  height: 40px;
  margin: 0 auto 15px;
  display: block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 20px;
}

.contact-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
  color: #6c757d;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
  direction: ltr;
}

.address-box .contact-details p {
  direction: initial;
}

.contact-details a:hover {
  color: #007bff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.youtube {
  background: #ff0000;
}

.social-link.tiktok {
  background: #000000;
}

.social-link.whatsapp {
  background: #25d366;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  color: #6c757d;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 0;
  }

  .contact-info-card {
    padding: 25px;
  }

  .country-header h2 {
    font-size: 1.5rem;
  }

  .section-title h1 {
    font-size: 2rem;
  }

  .map-container {
    height: 300px;
  }
}

/* ////////////////////////// contact section /////////////////////// */

.contact-section {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(246, 247, 249, .86), rgba(255, 255, 255, .96) 34%, rgba(255, 255, 255, .98)),
    url('../images/contact.webp') left center / auto 100% no-repeat,
    #fff;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(390px, 500px);
  gap: 10px;
  align-items: stretch;
  justify-content: center;
}

.contact-form-card,
.contact-map-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(30, 48, 84, .14);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 18px 44px rgba(16, 30, 56, .12);
}

.contact-form-card {
  order: 2;
  min-height: 530px;
  padding: 38px 36px 28px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.contact-heading h3 {
  margin: 0;
  color: #071f42;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-heading span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 20px auto 24px;
  color: #d7ad54;
  font-size: 22px;
}

.contact-heading span::before,
.contact-heading span::after {
  content: "";
  width: 82px;
  height: 1px;
  background: #d7ad54;
}

.contact-home-form {
  display: grid;
  gap: 12px;
}

.contact-field {
  position: relative;
  display: block;
  margin: 0;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #d7dde7;
  border-radius: 7px;
  background: rgba(255, 255, 255, .9);
  color: #071f42;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field input {
  height: 52px;
  padding: 0 58px 0 20px;
}

.contact-field textarea {
  min-height: 116px;
  resize: vertical;
  padding: 20px 58px 20px 20px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #6f7b91;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #213a73;
  box-shadow: 0 0 0 3px rgba(33, 58, 115, .08);
}

.contact-field i {
  position: absolute;
  top: 17px;
  right: 22px;
  color: #52637f;
  font-size: 19px;
  pointer-events: none;
}

.contact-submit {
  height: 58px;
  margin-top: 1px;
  border: 0;
  border-bottom: 2px solid #d7ad54;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: linear-gradient(180deg, #122c5e, #071f42);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(7, 31, 66, .18);
}

.contact-submit:hover {
  transform: translateY(-1px);
}

.contact-privacy {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #738096;
  font-size: 14px;
  line-height: 1.6;
}

.contact-privacy i {
  color: #52637f;
}

.contact-map-card {
  order: 1;
  min-height: 530px;
  padding: 6px;
  border-radius: 12px;
}

.contact-map-surface {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 516px;
  overflow: hidden;
  border-radius: 9px;
  background: #e5e3df;
}

.contact-map-surface iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  filter: none;
}

.contact-map-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
  background: none;
  pointer-events: none;
}

.contact-map-fallback {
  position: absolute;
  inset: 0;
  opacity: .75;
  background:
    repeating-linear-gradient(12deg, transparent 0 42px, #fff 43px 51px, transparent 52px 90px),
    repeating-linear-gradient(102deg, transparent 0 48px, #fff 49px 58px, transparent 59px 96px);
}

.contact-map-mark,
.contact-map-pin,
.contact-map-label,
.contact-office-card {
  position: absolute;
  z-index: 2;
}

.contact-map-mark-law {
  top: 56px;
  left: 30px;
  color: rgba(82, 99, 127, .55);
  font-size: 28px;
}

.contact-map-pin {
  top: 188px;
  left: 45%;
  color: #d83a2e;
  font-size: 78px;
  filter: drop-shadow(0 8px 14px rgba(216, 58, 46, .22));
}

.contact-map-surface.has-real-map .contact-map-mark,
.contact-map-surface.has-real-map .contact-map-pin,
.contact-map-surface.has-real-map .contact-map-label {
  display: none;
}

.contact-map-label {
  top: 214px;
  left: calc(45% + 78px);
  min-width: 146px;
  height: 50px;
  padding: 0 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #d7ad54;
  background: #102a5a;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 22px rgba(16, 42, 90, .22);
}

.contact-office-card {
  right: 58px;
  bottom: 24px;
  width: min(490px, calc(100% - 150px));
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(30, 48, 84, .18);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 34px rgba(16, 30, 56, .13);
  backdrop-filter: blur(8px);
}

.contact-office-icon {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #122c5e, #071f42);
  font-size: 30px;
}

.contact-office-copy h4 {
  margin: 0 0 10px;
  color: #071f42;
  font-size: 18px;
  font-weight: 800;
}

.contact-card-divider {
  display: block;
  width: 105px;
  height: 1px;
  margin: 0 0 18px;
  background: #d7ad54;
}

.contact-office-copy p {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #66728a;
  font-size: 14px;
  line-height: 1.6;
}

.contact-office-copy p:last-child {
  margin-bottom: 0;
}

.contact-office-copy p i {
  color: #52637f;
  font-size: 15px;
}

@media (max-width: 1199px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  }

  .contact-form-card,
  .contact-map-card {
    min-height: 520px;
  }

  .contact-map-surface {
    min-height: 506px;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form-card,
  .contact-map-card {
    min-height: auto;
  }

  .contact-map-surface {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .contact-form-card {
    padding: 38px 20px 28px;
  }

  .contact-heading h3 {
    font-size: 28px;
  }

  .contact-heading span::before,
  .contact-heading span::after {
    width: 58px;
  }

  .contact-office-card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-office-icon {
    margin-inline: auto;
  }

  .contact-card-divider {
    margin-inline: auto;
  }

  .contact-office-copy p {
    justify-content: center;
  }

  .contact-map-pin {
    left: 36%;
  }

  .contact-map-label {
    left: 47%;
    min-width: 130px;
    padding-inline: 14px;
  }
}


/* ////////////////////////// gallery section /////////////////////// */
.gallery-section {
  overflow: hidden;
}

.office-gallery-section {
  --office-gallery-bg: #fff;
  --office-gallery-ink: #172334;
  --office-gallery-gold: #c9ae72;
  --office-gallery-gold-light: #f1d996;
  --office-gallery-shadow: rgba(0, 0, 0, 0.48);
  background:
    linear-gradient(90deg, rgba(8, 26, 50, .045) 1px, transparent 1px),
    radial-gradient(ellipse at 50% -30%, rgba(8, 26, 50, .04), transparent 48%),
    var(--office-gallery-bg);
  background-size: 56px 100%, auto, auto;
  padding-top: 34px;
  padding-bottom: 38px;
  min-height: 330px;
}

.office-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 55px, rgba(13, 31, 56, .035) 55px 56px);
  opacity: .75;
  pointer-events: none;
}

.office-gallery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(70px 120px at 0 50%, transparent 48%, rgba(13, 31, 56, .045) 49%, transparent 51%),
    radial-gradient(70px 120px at 100% 50%, transparent 48%, rgba(13, 31, 56, .04) 49%, transparent 51%);
  background-size: 112px 100%;
  background-position: center top;
  pointer-events: none;
}

.office-gallery-section .container {
  position: relative;
  z-index: 1;
}

.office-gallery-heading {
  color: var(--office-gallery-ink);
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: none;
}

.office-gallery-heading span,
.office-gallery-heading strong {
  display: block;
}

.office-gallery-heading span {
  font-size: clamp(22px, 2.6vw, 34px);
}

.office-gallery-heading strong {
  display: none;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: .5px;
}

.office-gallery-stage {
  width: min(980px, 100%);
  margin-inline: auto;
  position: relative;
  padding-top: 18px;
}

.office-gallery-word {
  display: none;
  position: absolute;
  top: -4px;
  inset-inline-start: 8px;
  color: var(--office-gallery-ink);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
  opacity: .94;
  text-transform: uppercase;
  z-index: 3;
}

.office-gallery-swiper {
  overflow: visible;
  padding: 6px 8px 22px;
}

.office-gallery-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.office-gallery-swiper .swiper-slide {
  height: auto;
  transition: transform .35s ease, filter .35s ease;
}

.office-gallery-swiper .swiper-slide:nth-child(3n + 1) {
  transform: rotate(-2.8deg) translateY(12px);
  z-index: 1;
}

.office-gallery-swiper .swiper-slide:nth-child(3n + 2) {
  transform: rotate(1.4deg) translateY(0);
  z-index: 3;
}

.office-gallery-swiper .swiper-slide:nth-child(3n) {
  transform: rotate(1.8deg) translateY(10px);
  z-index: 2;
}

.office-gallery-swiper .gallery-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  padding: 5px;
  overflow: visible;
  background: linear-gradient(135deg, #8d7646, var(--office-gallery-gold-light) 45%, #7f682f);
  box-shadow:
    0 18px 24px var(--office-gallery-shadow),
    0 0 0 1px rgba(255, 235, 170, .45);
}

.office-gallery-swiper .gallery-image::before,
.office-gallery-swiper .gallery-image::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 237, 177, .55);
  pointer-events: none;
  z-index: 2;
}

.office-gallery-swiper .gallery-image::after {
  inset: auto 8px -10px 8px;
  height: 13px;
  border: 0;
  background: linear-gradient(90deg, rgba(94, 74, 31, .7), rgba(241, 217, 150, .7), rgba(94, 74, 31, .7));
  transform: skewX(-8deg);
  filter: blur(.2px);
  opacity: .75;
}

.office-gallery-swiper .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  filter: saturate(.95) contrast(1.04);
  transition: transform .35s ease, filter .35s ease;
}

.office-gallery-swiper .gallery-image i {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #10223b;
  background: rgba(241, 217, 150, .92);
  font-size: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
  z-index: 4;
}

.office-gallery-swiper .gallery-image:hover .gallery-img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.08);
}

.office-gallery-swiper .gallery-image:hover i {
  opacity: 1;
  transform: translateY(0);
}

.office-gallery-swiper .swiper-button-next,
.office-gallery-swiper .swiper-button-prev {
  width: 42px;
  height: 42px;
  top: 50%;
  margin-top: 0;
  color: #314695;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(49, 70, 149, .22);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(20, 32, 54, .18);
  transform: translateY(-50%);
  transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
  z-index: 8;
}

.office-gallery-swiper .swiper-button-next {
  inset-inline-end: -58px;
  inset-inline-start: auto;
}

.office-gallery-swiper .swiper-button-prev {
  inset-inline-start: -58px;
  inset-inline-end: auto;
}

.office-gallery-swiper .swiper-button-next:hover,
.office-gallery-swiper .swiper-button-prev:hover {
  color: #fff;
  background: #314695;
  box-shadow: 0 14px 28px rgba(20, 32, 54, .24);
  transform: translateY(-50%) scale(1.04);
}

.office-gallery-swiper .swiper-button-next::after,
.office-gallery-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}

.office-gallery-section .bg-logo {
  opacity: .06;
  filter: grayscale(1) brightness(2);
}

html[dir="ltr"] .office-gallery-word {
  inset-inline-start: 8px;
}

@media (min-width: 992px) {
  .office-gallery-swiper .swiper-slide:nth-child(3n + 2) {
    margin-inline: -18px;
  }
}

@media (max-width: 991.98px) {
  .office-gallery-section {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .office-gallery-stage {
    padding-top: 28px;
  }

  .office-gallery-word {
    inset-inline-start: 14px;
  }

  .office-gallery-swiper .swiper-button-next {
    inset-inline-end: 8px;
  }

  .office-gallery-swiper .swiper-button-prev {
    inset-inline-start: 8px;
  }

  .office-gallery-swiper .swiper-slide:nth-child(n) {
    transform: rotate(0) translateY(0);
  }
}

@media (max-width: 575.98px) {
  .office-gallery-heading {
    margin-bottom: 8px;
  }

  .office-gallery-word {
    position: static;
    margin-bottom: 12px;
    text-align: start;
  }

  .office-gallery-stage {
    padding-top: 0;
  }

  .office-gallery-swiper {
    padding: 0 0 62px;
  }

  .office-gallery-swiper .swiper-button-next,
  .office-gallery-swiper .swiper-button-prev {
    top: auto;
    bottom: 4px;
    transform: none;
  }

  .office-gallery-swiper .swiper-button-next:hover,
  .office-gallery-swiper .swiper-button-prev:hover {
    transform: scale(1.04);
  }

  .office-gallery-swiper .swiper-button-next {
    inset-inline-end: calc(50% - 54px);
  }

  .office-gallery-swiper .swiper-button-prev {
    inset-inline-start: calc(50% - 54px);
  }

  .office-gallery-swiper .gallery-image {
    padding: 4px;
    border-radius: 6px;
  }
}

.gallery-swiper {
  overflow: hidden;
}

.gallery-swiper .gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-swiper .gallery-image i {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 24px;
}

.gallery-img {
  transition: 0.3s ease;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.gallery-img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  width: 32px;
  height: 32px;
  background: #333D474D;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.gallery-swiper .swiper-button-next svg,
.gallery-swiper .swiper-button-prev svg {
  display: none;
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}


/* //////////////////////// testimonials section ///////////////////// */
.testimonial-showcase {
  --testimonial-dark: #071426;
  --testimonial-dark-2: #0d213b;
  --testimonial-card: rgba(255, 255, 255, .08);
  --testimonial-border: rgba(255, 255, 255, .16);
  --testimonial-accent: var(--main-color, #314695);
  --testimonial-gold: #d7ba76;
  padding: 70px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(49, 70, 149, .35), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(215, 186, 118, .16), transparent 24%),
    linear-gradient(135deg, var(--testimonial-dark), var(--testimonial-dark-2));
}

.testimonial-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: .28;
  pointer-events: none;
}

.testimonial-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--testimonial-dark) 0%, transparent 18%, transparent 82%, var(--testimonial-dark) 100%);
  pointer-events: none;
  z-index: 2;
}

.testimonial-showcase .container {
  position: relative;
  z-index: 3;
}

.testimonial-heading {
  margin-bottom: 28px;
}

.testimonial-heading h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  margin: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.testimonial-heading p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .74);
  margin: 12px 0 0;
  font-size: 15px;
}

.testimonial-heading p::before,
.testimonial-heading p::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--testimonial-gold));
}

.testimonial-heading p::after {
  background: linear-gradient(90deg, var(--testimonial-gold), transparent);
}

.testimonial-swiper {
  overflow: visible;
  padding: 22px 0 12px;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  opacity: .48;
  transform: scale(.92);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .32));
}

.testimonial-card {
  height: 100%;
  min-height: 260px;
  padding: 28px 22px 22px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045)),
    linear-gradient(135deg, rgba(49, 70, 149, .20), rgba(0, 0, 0, .18));
  border: 1px solid var(--testimonial-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), 0 18px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.testimonial-swiper .swiper-slide-active .testimonial-card {
  border-color: rgba(215, 186, 118, .58);
  box-shadow:
    0 0 0 1px rgba(215, 186, 118, .22),
    0 20px 52px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.testimonial-quote {
  position: absolute;
  top: 18px;
  inset-inline-start: 22px;
  color: var(--testimonial-gold);
  font-size: 28px;
  opacity: .9;
}

.testimonial-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
  flex: 1;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-profile img,
.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 58px;
  border: 2px solid rgba(215, 186, 118, .75);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--testimonial-accent);
}

.testimonial-info h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.testimonial-info span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--testimonial-gold);
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .testimonial-showcase {
    padding: 58px 0 68px;
  }

  .testimonial-showcase::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .testimonial-heading p {
    display: block;
  }

  .testimonial-heading p::before,
  .testimonial-heading p::after {
    display: none;
  }

  .testimonial-card {
    min-height: 250px;
    padding: 26px 18px 20px;
  }
}

.testimonials {
  padding: 50px 0 80px;
  background-color: #eee;
  position: relative;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: var(--main-color);
  background-image: url('../images/gray.png');
  animation: movePattern 20s linear infinite;
}

.testimonials h2 {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
}

.testimonials .content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .testimonials .content {
    flex-direction: column;
  }
}

.testimonials .content .box {
  padding: 20px;
  flex: 1;
  background-color: #fff;
  border-radius: 10px;

  /* ✅ Make text on top & profile at bottom */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  min-height: 280px;
  /* يمكنك تغييرها حسب التصميم */
}

.testimonials .box>p {
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

.testimonials .box .profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  /* Push to bottom just in case */
}

.testimonials .box .profile img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials .box .profile p {
  font-weight: bold;
  margin: 0;
  color: var(--main-color);
}

.testimonials .box .profile span {
  font-size: 15px;
  opacity: 0.8;
}

.testimonials.testimonial-showcase {
  padding: 70px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(49, 70, 149, .35), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(215, 186, 118, .16), transparent 24%),
    linear-gradient(135deg, var(--testimonial-dark), var(--testimonial-dark-2));
}

.testimonials.testimonial-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: .28;
  pointer-events: none;
}

.testimonials.testimonial-showcase h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  margin: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  text-transform: none;
}

.testimonials.testimonial-showcase .testimonial-heading p {
  color: rgba(255, 255, 255, .74);
}



/* ////////////////////////// footer section /////////////////////// */

.footer {
  padding: 70px 0 0;
  background-color: #191919;
}

.footer .social {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
}


.footer .social li a {
  background-color: #313131;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: .3s;
}

.footer .social .facebook:hover {
  background-color: #1877f2;
}

.footer .social .twitter:hover {
  background-color: #1da1f2;
}

.footer .social .instagram:hover {
  background-color: #ff3040;
}

.footer .social .youtube:hover {
  background-color: #ff0000;
}

.footer .text {
  line-height: 2;
  color: #fff;
}

.footer .links li a {
  color: #fff;
  transition: .3s;
}

.footer .links li i {
  color: #fff;
  margin-left: 10px;
}

.footer .links li {
  padding: 15px 0;
  transition: .3s;
}

.footer .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}

.footer .links li:hover a {
  color: var(--main-color);
  padding-left: 10px;
}

.footer .line {
  display: flex;
  align-items: center;
  color: #b9b9b9;
  margin-bottom: 30px;
}

.footer .line i {
  color: var(--main-color);
  margin-left: 10px;
  font-size: 25px;
}

.footer .line .info {
  line-height: 1.7;
  flex: 1;
  color: #fff;
}

.footer .line .info a {
  color: #fff;
}

.footer .copyright {
  padding: 25px 0;
  text-align: center;
  color: white;
  margin: 50px 0 0;
  border-top: 1px solid #444;
}


/* ////////////////////////// whatsapp /////////////////////// */
.phone-static-icon {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 10;
  background: #1e48c4;
  background: var(--main-hover-color);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

.phone-static-icon i {
  font-size: 25px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  background: #4CAF50;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

.whatsapp i {
  font-size: 35px;
}


.video-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);

  /* Center */
  justify-content: center;
  align-items: center;
  padding: 15px;
}


.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  animation: fadeInScale 0.3s ease;
}

@media (max-width: 576px) {
  .video-popup-content {
    width: 100%;
  }
}

.video-popup-content iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.close-video {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
}

.close-video:hover {
  color: #ff2f2f;
  transform: scale(1.1);
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .video-popup-content iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .video-popup-content iframe {
    height: 230px;
  }

  .close-video {
    font-size: 26px;
  }
}

/* ////////////////////////////////// team ////////////////////////////////// */
.team-section {
  background-color: #fff;
  overflow: hidden;
}

.team-section h2 {
  color: #202834;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 12px !important;
}

.team-heading-divider {
  display: block;
  width: 160px;
  height: 18px;
  margin: 0 auto 20px;
  position: relative;
}

.team-heading-divider::before,
.team-heading-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.team-heading-divider::before {
  right: 0;
}

.team-heading-divider::after {
  left: 0;
}

.team-heading-divider {
  background:
    radial-gradient(circle, var(--main-color) 0 3px, transparent 4px) center / 18px 18px no-repeat,
    radial-gradient(circle, var(--main-color) 0 2px, transparent 3px) calc(50% - 8px) 50% / 18px 18px no-repeat,
    radial-gradient(circle, var(--main-color) 0 2px, transparent 3px) calc(50% + 8px) 50% / 18px 18px no-repeat;
}

.team-subtitle {
  max-width: 620px;
  margin: 0 auto 54px;
  color: #6e7580;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.9;
  text-align: center;
}

.team-swiper {
  overflow: visible;
  padding: 0 54px 64px;
}

.team-swiper .swiper-wrapper {
  align-items: stretch;
}

.team-swiper .swiper-slide {
  height: auto;
}

.team-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f6;
  box-shadow: 0 14px 30px rgba(22, 30, 48, .12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.team-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(22, 30, 48, .18);
}

.team-img {
  position: relative;
  height: 100%;
}

.team-img::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .56) 58%, rgba(0, 0, 0, .76) 100%);
  pointer-events: none;
  z-index: 2;
}

.team-img img {
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 10px;
  transition: transform .35s ease;
}

.team-box:hover .team-img img {
  transform: scale(1.04);
}

.team-content {
  position: absolute;
  inset-inline: 14px;
  bottom: 18px;
  z-index: 3;
  color: #fff;
  text-align: center;
}

.team-content h4 {
  color: #fff;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.25;
  font-weight: 900;
  margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.team-content span {
  display: block;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
  width: 52px;
  height: 52px;
  margin-top: -18px;
  color: var(--main-color);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(55, 70, 135, .12);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(25, 35, 58, .10);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.team-swiper .swiper-button-next {
  inset-inline-end: -6px;
}

.team-swiper .swiper-button-prev {
  inset-inline-start: -6px;
}

.team-swiper .swiper-button-next::after,
.team-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
  color: #fff;
  background: var(--main-color);
  transform: scale(1.04);
}

.team-swiper .swiper-pagination {
  bottom: 16px !important;
}

.team-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c9ced6;
  opacity: 1;
}

.team-swiper .swiper-pagination-bullet-active {
  background: var(--main-color);
}

@media (max-width: 767px) {
  .team-swiper {
    padding-inline: 44px;
  }

  .team-subtitle {
    margin-bottom: 34px;
  }
}

@media (max-width: 575px) {
  .team-swiper {
    padding-inline: 36px;
  }

  .team-swiper .swiper-button-next,
  .team-swiper .swiper-button-prev {
    width: 42px;
    height: 42px;
  }
}

/* ////////////////////////////////// counter ////////////////////////////////// */
.counter-section {
  background: #fff;
  padding-block: 100px 66px;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: 70px;
  inset-inline-start: calc(50% - 560px);
  width: 300px;
  height: 250px;
  background: #d9dee9;
  opacity: .9;
}

.counter-section::after {
  content: "";
  position: absolute;
  top: 270px;
  inset-inline-end: calc(50% - 650px);
  width: 150px;
  height: 180px;
  background: #3f5797;
}

.counter-section .container {
  position: relative;
  z-index: 1;
}

.counter-panel {
  width: min(100%, 1120px);
  min-height: 392px;
  margin-inline: auto;
  padding: 0 64px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 34px rgba(22, 38, 55, .07);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
  position: relative;
}

.counter-section .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  position: relative;
  min-width: 0;
  text-align: start;
}

.counter-icon {
  color: #6173a3;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.counter-section .box .number {
  font-size: 46px;
  font-weight: 600;
  color: #51648f;
  line-height: 1;
}

.counter-section .box .text {
  flex: 0 0 100%;
  color: #687384;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .counter-section {
    padding-block: 84px 58px;
  }

  .counter-section::before {
    inset-inline-start: 26px;
    width: 220px;
    height: 210px;
  }

  .counter-section::after {
    inset-inline-end: 28px;
    top: auto;
    bottom: 70px;
    width: 116px;
    height: 150px;
  }

  .counter-panel {
    min-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 36px;
    gap: 28px;
  }
}

@media (max-width: 567px) {
  .counter-section {
    padding-block: 64px;
  }

  .counter-section::before {
    top: 34px;
    width: 160px;
    height: 180px;
  }

  .counter-section::after {
    width: 92px;
    height: 124px;
  }

  .counter-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 22px;
  }

  .counter-icon {
    font-size: 28px;
  }

  .counter-section .box .number {
    font-size: 34px;
  }

  .counter-section .box .text {
    font-size: 18px;
    white-space: normal;
  }
}

/* ////////////////////////////////// sertificates-section ////////////////////////////////// */

.sertificates-section img {
  cursor: pointer;
  aspect-ratio: 14/10;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 15px;
  border: 3px solid #ddd;
}


/* ////////////////////////////////// text-desctiption ////////////////////////////////// */
.text-area h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 16px;
  color: #000;
}

.text-area h3 {
  font-size: 25px;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 16px;
  color: #000;
}

.text-area h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 16px;
  color: #000;
}

.text-area ul {
  list-style: disc;
  padding: 0 20px;
}

.text-area ul li {
  font-size: 16px;
  /* font-weight: bold; */
  color: #515151;
  padding: 4px 0;
}

.custom-list ul {
  list-style: none;
  padding: 0;
}

.custom-list ul li {
  list-style: none;
  padding: 0;
  font-weight: bold;
}

.custom-list ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: var(--main-color);
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 5px;
}

/* blog */

.blog-section .image-style-side {
  float: right;
  margin-left: 20px;
  max-width: 50%;
}

.blog-section .text-area img {
  max-width: 100% !important;
  height: auto !important;
  margin: 15px 0;
  border-radius: 10px;
}

.blog-section .image-box {
  position: relative;
}


.blog-section .created i {
  padding-left: 5px;
}

@media (max-width: 767px) {
  .blog-section .box .content h3 {
    font-size: 18px;
    min-height: auto;
  }

  .services-section .box .content p {
    font-size: 14px;
  }
}

.blog-section .pagination {
  margin-top: 40px;
  justify-content: center;
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.page-item:first-child .page-link {
  border-radius: 0;
}

.page-item:last-child .page-link {
  border-radius: 0;
}

.page-link {
  padding: 8px 15px;
  color: var(--main-color);
}
