body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "yekanbakh";
}

a {
  background-color: transparent;
  text-decoration: none;
}

* {
  transition: all 0.2s ease-in-out;
}

/*.................Scrollbar style................*/
/* Scrollbar styles are now controlled via Customizer (ParsGostar Theme Settings > Scrollbar Settings) */
/*.................End Scrollbar style................*/

/*.................header style................*/

.moho_desktop-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.moho_desktop-menu li {
  list-style: none;
}

.moho_desktop-menu > li {
  position: relative;
}

.moho_desktop-menu > li > a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 0;
}

.moho_desktop-menu .moho_menu-caret {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.moho_desktop-menu > li.menu-item-has-children > a .moho_menu-caret {
  font-size: 13px;
  margin-inline-start: 2px;
}

.moho_desktop-menu > li.menu-item-has-children:hover > a .moho_menu-caret,
.moho_desktop-menu
  > li.menu-item-has-children:focus-within
  > a
  .moho_menu-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.moho_desktop-menu li .sub-menu {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 18px);
  min-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(4, 4, 21, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  list-style: none;
  margin: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.moho_desktop-menu li .sub-menu li + li {
  margin-top: 12px;
}

.moho_desktop-menu li .sub-menu li a {
  font-size: 15px;
  color: #4d4d4d;
  display: block;
  border-left: none !important;
  border-right: none !important;
  padding: 4px 0 10px 0 !important;
  font-weight: normal;
}

.moho_desktop-menu li .sub-menu li {
  height: auto;
  display: block;
  margin: 0;
}

.moho_desktop-menu li .sub-menu li::before,
.moho_desktop-menu li .sub-menu li::after {
  display: none;
}

.moho_desktop-menu li .sub-menu li.menu-item-has-children {
  position: relative;
}

.moho_desktop-menu li .sub-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.moho_desktop-menu
  li
  .sub-menu
  li.menu-item-has-children
  > a
  .moho_menu-caret--nested {
  font-size: 12px;
  opacity: 0.55;
  margin-inline-start: auto;
}

.moho_desktop-menu
  li
  .sub-menu
  li.menu-item-has-children:hover
  > a
  .moho_menu-caret--nested,
.moho_desktop-menu
  li
  .sub-menu
  li.menu-item-has-children:focus-within
  > a
  .moho_menu-caret--nested {
  opacity: 1;
  color: #d8a448;
}

.moho_desktop-menu li .sub-menu li.menu-item-has-children > .sub-menu {
  top: 0;
  inset-inline-start: calc(100% + 8px);
  transform: translateX(-8px);
}

.moho_desktop-menu li .sub-menu li.menu-item-has-children:hover > .sub-menu,
.moho_desktop-menu
  li
  .sub-menu
  li.menu-item-has-children:focus-within
  > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.moho_desktop-menu li:hover > .sub-menu,
.moho_desktop-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.moho_desktop-menu > li.mega-menu {
  position: static;
}

.moho_desktop-menu > li.mega-menu > .sub-menu {
  width: 100%;
  inset-inline-start: 0;
  top: calc(100% + 24px);
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 40px;
  padding: 40px 56px 48px;
  border-radius: 28px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  box-shadow: 0 35px 90px rgba(7, 7, 7, 0.12);
  direction: rtl;
  text-align: right;
}

.moho_desktop-menu > li.mega-menu > .sub-menu > li {
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-inline-start: 24px;
}

.moho_desktop-menu > li.mega-menu > .sub-menu > li + li {
  border-inline-start: 1px solid rgba(7, 7, 7, 0.06);
}

.moho_desktop-menu > li.mega-menu > .sub-menu::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 100%;
  height: 12px;
  pointer-events: none;
  background: transparent;
}

.moho_desktop-menu > li.mega-menu > .sub-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  color: #070707;
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
}

.moho_desktop-menu > li.mega-menu > .sub-menu > li .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.moho_desktop-menu > li.mega-menu > .sub-menu > li .sub-menu a {
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #4d4d4d;
  padding: 2px 0;
}

.moho_mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.moho_mobile-menu-list li {
  list-style: none;
  position: relative;
}

.moho_mobile-menu-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.moho_mobile-menu-item-head > a {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  text-decoration: none;
  color: #002547;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.moho_mobile-menu-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 0;
  text-decoration: none;
  color: #002547;
  font-size: 14px;
  font-weight: 500;
}

.moho_mobile-menu-list .sub-menu > li > .moho_mobile-menu-item-head > a {
  font-size: 14px;
  font-weight: 500;
  color: #002547;
  min-height: 40px;
  padding: 8px 0;
}

.moho_mobile-menu-list .sub-menu {
  position: static;
  inset: unset;
  min-width: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  opacity: 0;
  visibility: visible;
  transform: none;
  margin: 0;
  margin-inline-start: 14px;
  padding-inline-start: 14px;
  border-inline-start: 2px solid rgba(7, 7, 7, 0.08);
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    margin 0.25s ease;
}

.moho_mobile-menu-list li.is-open > .sub-menu {
  opacity: 1;
  max-height: 800px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.moho_mobile-menu-list .sub-menu .sub-menu {
  margin-inline-start: 10px;
  padding-inline-start: 12px;
  border-inline-start-color: rgba(7, 7, 7, 0.06);
}

.moho_mobile-menu-list .sub-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 400;
  color: #4d4d4d;
  text-decoration: none;
  line-height: 1.4;
}

.moho_mobile-menu-list .sub-menu a i {
  font-size: 17px;
  flex-shrink: 0;
}

.moho_submenu-toggle {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(7, 7, 7, 0.12);
  background: #f9fbfd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002547;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  z-index: 2;
  padding: 0;
}

.moho_submenu-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}

.moho_mobile-menu-list
  li.is-open
  > .moho_mobile-menu-item-head
  .moho_submenu-toggle::before,
.moho_mobile-menu-list li.is-open > .moho_submenu-toggle::before {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.moho_mobile-menu-list
  li.is-open
  > .moho_mobile-menu-item-head
  .moho_submenu-toggle,
.moho_mobile-menu-list li.is-open > .moho_submenu-toggle {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.35);
  color: #d8a448;
}

.moho_mobile-menu-list li.is-open > .moho_mobile-menu-item-head > a,
.moho_mobile-menu-list li.menu-item-has-children.is-open > a {
  color: #d8a448;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hamburger Menu Styles */
.moho_hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #070707;
  padding: 0;
  z-index: 1001;
}

.moho_hamburger-btn i {
  font-size: 28px;
}

.moho_mobile-menu {
  display: none;
}

.moho_close-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #070707;
  padding: 0;
  position: absolute;
  top: 20px;
  inset-inline-start: 20px;
  z-index: 1002;
}

.moho_close-btn i {
  font-size: 32px;
}

/*.................end header................*/

/*.................Engineer section................*/
.moho_engineer-section {
  padding-bottom: 150px;
}

.moho_Engineer {
  display: flex;
  align-items: center;
  margin-top: 156px;
}

.moho_Engineer .moho_Engineer-img {
  z-index: -2;
  position: absolute;
  right: 0px;
  padding: 0;
  max-width: 714px;
}

.moho_Engineer .moho_Engineer-img img {
  width: 100%;
  height: 398px;
  object-fit: cover;
}

.moho_Engineer .moho_Engineer-content {
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid #efcfa5;
  max-width: 540px;
}

.moho_Engineer .moho_Engineer-content a {
  display: flex;
  font-weight: 300;
  justify-content: center;
  font-size: 16px;
  background: #070707;
  padding: 8px 0;
  color: #ffffff;
  max-width: 123px;
}

.moho_Engineer .moho_Engineer-content h1 {
  font-size: 54px;
  line-height: 64px;
  font-weight: 700;
  color: #070707;
  margin-bottom: 16px;
}

.moho_Engineer .moho_Engineer-content p {
  text-align: justify;
  line-height: 29px;
  font-size: 16px;
  color: #848484;
  font-weight: 300;
}

.moho_Engineer .moho_Engineer-img:after {
  content: "";
  width: 196px;
  height: 165px;
  background: #efcfa5;
  top: 268px;
  position: absolute;
  display: block;
  inset-inline-start: 66px;
  z-index: -1;
}

.moho_Engineer .moho_Engineer-img:before {
  content: "";
  position: absolute;
  top: -194px;
  inset-inline-end: 0;
  width: 369px;
  height: 265px;
  background: linear-gradient(
    0deg,
    rgba(239, 207, 165, 0.7) 50%,
    rgba(239, 207, 165, 0.05) 100%
  );
  z-index: 0;
}

/*.................end Engineer section................*/

/*................. Achievements Section ................*/
.moho_achievements {
  margin-top: 80px;
}

.moho_achievements-office {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
}

.moho_office-image {
  position: relative;
  flex: 0 0 45%;
  width: 517px;
}

.moho_office-image::before {
  position: absolute;
  content: "";
  border: 1px solid #efcfa5;
  width: 511px;
  height: 317px;
  top: -25px;
  left: 110px;
  z-index: -1;
}

.moho_office-image::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    177deg,
    rgba(239, 207, 165, 0.73) 51%,
    rgba(239, 207, 165, 0.41) 100%
  );
  width: 100%;
  height: 108px;
  bottom: -30px;
  right: 70%;
  z-index: 1;
}

.moho_office-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.moho_info-achievements {
  flex: 1;
  padding-inline-end: 20px;
}

.moho_info-achievements h2 {
  font-size: 54px;
  font-weight: 700;
  color: #070707;
  margin-bottom: 40px;
}

.moho_achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.moho_achievement-item {
  text-align: left;
}

.moho_achievement-number {
  font-size: 48px;
  font-weight: 400;
  color: #070707;
  margin-bottom: 8px;
}

.moho_achievement-title {
  font-size: 18px;
  font-weight: 700;
  color: #c88937;
  margin-bottom: 8px;
}

.moho_achievement-description {
  font-size: 16px;
  font-weight: 300;
  color: #848484;
  line-height: 1.4;
}

/*................. End Achievements Section ................*/

/*................. Services ................*/
.moho_services {
  margin-top: 160px;
}

.moho_services-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  margin-inline-end: auto;
  margin-inline-start: auto;
}

.moho_services-title-section {
  flex: 0 0 auto;
  width: 60%;
  margin: 10px 30px 0 0;
}

.moho_services-title {
  font-size: 54px;
  font-weight: 700;
  color: #070707;
  margin: 10px 0 0 0;
}

.moho_services-line {
  width: 120px;
  height: 1px;
  background-color: #efcfa5;
  border-radius: 2px;
  width: 100%;
}

.moho_services-description {
  flex: 1;
  font-size: 20px;
  font-weight: 300;
  color: #848484;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.moho_services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.moho_service-card {
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.moho_service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.moho_service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.moho_service-card:hover .moho_service-image img {
  transform: scale(1.1);
}

.moho_service-title {
  font-size: 18px;
  font-weight: 700;
  color: #c88937;
  margin: 20px 20px 10px 0;
}

.moho_service-description {
  font-size: 16px;
  font-weight: 300;
  color: #848484;
  line-height: 1.5;
  margin: 0 20px 20px 0;
}

.moho_object-fit-cover {
  object-fit: cover;
}

/*................. End Services ................*/

/*................. Pagination ................*/
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #efcfa5;
  color: #070707;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: #070707;
  color: #ffffff;
  border-color: #070707;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  width: auto;
  padding: 0 15px;
  border: none;
  font-size: 20px;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
  background: transparent;
  color: #c88937;
}

.nav-links {
  display: flex;
}

/*................. End Pagination ................*/

/*................. Responsive ................*/
@media screen and (max-width: 1024px) {
  .moho_Engineer {
    margin-top: 80px;
  }

  .moho_Engineer .moho_Engineer-img {
    top: 160px;
  }

  .moho_services {
    margin-top: 80px;
  }

  .moho_slider-certified {
    margin-inline-end: -3%;
  }

  .moho_Engineer .moho_Engineer-img:after {
    top: 170px;
  }

  .moho_engineer-section {
    padding-bottom: 60px;
  }

  .moho_office-image::before {
    width: 345px;
    top: -24px;
  }

  .moho_info-achievements h2 {
    font-size: 45px;
  }

  .moho_title-certified h2 {
    font-size: 45px;
  }

  .moho_Minds .moho_Minds-content div h2 {
    font-size: 45px;
    width: 35%;
  }

  .moho_Minds .moho_Minds-content div span {
    width: 65%;
  }

  .moho_Minds-img {
    overflow-x: auto;
  }

  .moho_Minds .moho_Minds-img {
    gap: 24px;
  }

  .moho_what-built-button {
    margin-bottom: 24px;
  }

  .moho_what-built {
    margin-top: 80px;
  }

  .moho_certified-excellence {
    margin-top: 80px;
  }

  .moho_minds-section {
    margin-top: 80px;
  }

  .testimonial-section {
    margin-top: 80px;
  }

  /* Removed old footer styles to match in8.html exactly */

  .moho_lik-post-grid {
    overflow-x: auto;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  /* Hide desktop menu and contact on mobile */
  .moho_desktop-menu,
  .moho_desktop-contact {
    display: none !important;
  }

  /* Show hamburger button */
  .moho_hamburger-btn {
    display: block;
  }

  /* Mobile menu styles */
  .moho_mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    background: #fffbf9;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 40px;
    overflow: hidden;
    transition:
      max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      padding-top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      padding-bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .moho_mobile-menu.active {
    max-height: 100vh;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow-y: auto;
  }

  /* Close button visible when menu is open */
  .moho_mobile-menu.active .moho_close-btn {
    display: block;
  }

  .moho_mobile-menu .moho_close-btn {
    animation: fadeIn 0.3s ease 0.2s both;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Mobile menu list */
  .moho_mobile-menu ul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    flex: 1;
    opacity: 0;
    visibility: hidden;
  }

  .moho_mobile-menu.active ul {
    display: flex;
    opacity: 1;
    visibility: visible;
    animation: slideUp 0.5s ease 0.1s both;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .moho_mobile-menu ul li {
    margin: 0;
    animation: slideUp 0.5s ease calc(0.1s + var(--delay, 0s)) both;
  }

  .moho_mobile-menu ul li:nth-child(1) {
    --delay: 0.05s;
  }

  .moho_mobile-menu ul li:nth-child(2) {
    --delay: 0.1s;
  }

  .moho_mobile-menu ul li:nth-child(3) {
    --delay: 0.15s;
  }

  .moho_mobile-menu ul li:nth-child(4) {
    --delay: 0.2s;
  }

  .moho_mobile-menu ul li:nth-child(5) {
    --delay: 0.25s;
  }

  .moho_mobile-menu ul li a {
    font-size: 24px;
    font-weight: 300;
    color: #070707;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
  }

  .moho_mobile-menu ul li a {
    text-align: center;
  }

  .moho_mobile-menu ul li a:hover {
    color: #c88937;
    transform: scale(1.05);
  }

  /* Mobile contact section - centered at bottom */
  .moho_mobile-menu .moho_btn-contact {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
    visibility: hidden;
  }

  .moho_mobile-menu.active .moho_btn-contact {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    animation: slideUp 0.5s ease 0.3s both;
  }

  .moho_mobile-menu .moho_btn-contact span {
    font-size: 18px;
    font-weight: 400;
    color: #070707;
  }

  .moho_mobile-menu .moho_btn-contact div {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .moho_mobile-menu .moho_btn-contact div a {
    font-size: 24px;
    color: #070707;
    margin: 0;
    transition: all 0.3s ease;
  }

  .moho_mobile-menu .moho_btn-contact div a:hover {
    color: #c88937;
    transform: scale(1.2);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Hamburger button animation */
  .moho_hamburger-btn {
    transition: transform 0.3s ease;
  }

  .moho_hamburger-btn:hover {
    transform: scale(1.1);
  }

  .moho_hamburger-btn.active {
    opacity: 0;
    pointer-events: none;
  }

  .moho_Engineer {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
    margin-top: 40px;
  }

  .moho_Engineer .moho_Engineer-img:before {
    right: -35px;
  }

  .moho_Engineer .moho_Engineer-img {
    position: relative;
    inset: unset;
    right: auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .moho_Engineer .moho_Engineer-img img {
    width: 105%;
    height: auto;
    display: block;
  }

  .moho_Engineer .moho_Engineer-img:after {
    top: 275px;
  }

  .moho_Engineer .moho_Engineer-content {
    max-width: 100%;
    width: 100%;
    margin-top: 27px;
  }

  .moho_Engineer .moho_Engineer-content h1 {
    font-size: 36px;
  }

  .moho_achievements-office {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .moho_info-achievements h2 {
    font-size: 36px;
  }

  .moho_office-image {
    left: -30px;
  }

  .moho_office-image::before {
    width: 436px;
    top: -24px;
  }

  .moho_services-header {
    flex-direction: column;
  }

  .moho_services-title {
    font-size: 36px;
  }

  .moho_services-title-section {
    width: 100%;
  }

  .moho_services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moho_info-what-built {
    flex-direction: column-reverse;
  }

  .moho_what-built-title-desc h2 {
    font-size: 36px;
  }

  .moho_slider-what-built {
    width: 835px;
  }

  .moho_title-certified {
    flex-direction: column;
  }

  .moho_title-certified h2 {
    font-size: 36px;
  }

  .moho_Minds .moho_Minds-content div h2 {
    width: 38%;
    font-size: 36px;
  }

  .moho_Minds .moho_Minds-content div span {
    width: 62%;
  }

  .testimonial-container {
    flex-direction: column-reverse;
  }

  .testimonial-right {
    width: 100%;
  }

  .faq-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .moho_border-faq {
    display: none;
  }

  .moho_subscription {
    flex-direction: column;
  }

  .moho_blog {
    margin-top: 80px;
  }

  .moho_blog-items {
    flex-direction: column;
  }

  .moho_blog-item {
    width: 100%;
  }

  .moho_blog-sort {
    margin-top: 0;
    width: 100%;
  }

  .moho_blog-item-sort:first-child {
    border-top: 1px solid #efcfa5;
    padding-top: 16px;
  }

  .moho_blog-item-sort {
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .moho_blog-item-sort > .moho_blog-informations {
    margin-top: 24px;
  }

  .moho_blog-items {
    gap: 20px;
  }

  .moho_archive-blog {
    grid-template-columns: 1fr;
  }

  /* Removed old footer styles to match in8.html exactly */

  .moho_slider-certified {
    margin-inline-end: -3%;
  }

  .moho_slider-Minds {
    margin-inline-end: -5%;
  }

  .moho_not-found {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 425px) {
  .moho_Engineer .moho_Engineer-img:before {
    width: 200px;
    height: 170px;
  }

  .moho_Engineer .moho_Engineer-img:before {
    top: -130px;
    right: -11px;
  }

  .moho_Engineer .moho_Engineer-img:after {
    top: 105px;
  }

  .moho_Engineer .moho_Engineer-img img {
    width: 103%;
  }

  .moho_office-image {
    width: 332px;
  }

  .moho_office-image::before {
    width: 332px;
    top: -18px;
    left: 20px;
    height: 204px;
  }

  .moho_office-image img {
    width: 100%;
    height: 100%;
  }

  .moho_slider-what-built {
    width: 429px;
  }

  .moho_slider-Minds {
    margin-inline-end: -3%;
  }

  .moho_info-subscription {
    text-align: center;
  }

  .moho_service-image {
    height: auto;
  }

  .moho_Minds .moho_Minds-content div span {
    width: 34%;
  }

  .moho_Minds .moho_Minds-content div h2 {
    width: 65%;
  }

  .testimonial-right h2 {
    font-size: 36px;
  }

  .moho_blog-title h2 {
    font-size: 36px;
    width: 70%;
  }

  .moho_blog-img img {
    width: 400px;
    height: 201px;
    object-fit: cover;
  }

  .moho_blog-info {
    gap: 24px;
  }

  .moho_title-not h3 {
    font-size: 120px;
  }

  .moho_not-found h2 {
    font-size: 36px;
  }

  .moho_not-found p {
    font-size: 14px;
  }

  .moho_not-found {
    top: -62px;
  }
}

@media screen and (max-width: 375px) {
  .moho_archive-blog {
    gap: 20px;
    margin-top: 24px;
  }

  .moho_Engineer .moho_Engineer-img:after {
    top: 70px;
  }

  .moho_office-image {
    left: -15px;
  }

  .moho_slider-what-built {
    width: 378px;
  }

  .moho_Minds .moho_Minds-content div span {
    width: 26%;
  }

  .moho_Minds .moho_Minds-content div h2 {
    width: 73%;
  }
}

@media screen and (max-width: 320px) {
  .moho_Engineer .moho_Engineer-img:after {
    top: 40px;
  }

  .moho_office-image {
    width: 260px;
  }

  .moho_office-image::before {
    width: 255px;
    height: 180px;
  }

  .moho_slider-what-built {
    width: 300px;
  }
}

/*................. End Responsive ................*/

/* =========================================
   New Header Styles (Migrated from in.html)
   ========================================= */

.moho_header-pg {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 25px;
  margin-inline-end: 24px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}

.moho_header {
  background: url("../../header.svg");
  background-repeat: no-repeat;
  background-position: top;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 998;
  justify-content: unset;
  padding-bottom: unset;
  align-items: unset;
  margin-top: unset;
  padding-right: 0;
  /* Reset */
}

/* wpcode start --- desktop logo image styles */
.moho_header-logo {
  display: flex;
  width: 320px;
  height: 127px;
  background: #d8a448;
  overflow: hidden;
  justify-content: space-around;
  align-items: center;
  padding: 0 15px 0 15px;
  border-radius: 0 0 0 56px;
}

.moho_header-logo--image {
  width: 360px;
  padding: 0 20px;
}

.moho_shape {
  position: relative;
  top: -35px;
  right: 10px;
}

.moho_logo {
  display: flex;
  align-items: center;
  position: relative;
  right: 20px;
  gap: 10px;
  min-width: 0;
}

.moho_logo--image {
  right: 0;
  flex: 1;
  justify-content: center;
}

.moho_logo i,
.moho_logo svg {
  background: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  color: #d8a448;
  display: flex;
  /* SVG might need this container or act as block */
  align-items: center;
  justify-content: center;
  font-size: 32px;
  fill: #d8a448;
  /* For SVGs */
}

.moho_logo-image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  flex-shrink: 0;
  max-width: 100%;
}

.moho_logo-image img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.moho_logo a {
  display: flex;
  flex-direction: column;
  padding-inline-end: 10px;
  text-decoration: none;
  font-size: unset;
  font-weight: unset;
  color: unset;
}

.moho_logo a.moho_logo-text {
  padding-inline-end: 0;
  min-width: 0;
}

.moho_logo a h3 {
  font-size: 17.32px;
  color: #fff;
  margin: 10px 0;
}

.moho_logo a span {
  font-size: 15px;
  color: #ffffff;
}
/* wpcode end --- desktop logo image styles */

.moho_shape-2 {
  position: relative;
  top: -20px;
  right: -6px;
}

.moho_shape-2 img {
  width: 35px;
}

.moho_menu {
  display: flex;
  align-items: center;
  overflow: visible;
}

.moho_menu > ul {
  list-style: none;
  margin: 0;
  display: flex;
  padding-inline-start: 30px;
}

.moho_menu > ul > li.active::after,
.moho_menu > ul > li.current-menu-item::after {
  content: "";
  position: absolute;
  background: #d8a448;
  width: 119px;
  height: 9px;
  border-radius: 0 0 50px 50px;
  top: -4px;
}

.moho_menu > ul > li {
  height: 80px;
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
}

.moho_menu > ul > li.active::before,
.moho_menu > ul > li.current-menu-item::before {
  content: "";
  position: absolute;
  background: #d8a448;
  width: 119px;
  height: 6px;
  border-radius: 50px 50px 0 0;
  bottom: 0px;
}

.moho_menu > ul > li > a {
  text-decoration: none;
  color: #002547;
  font-size: 16px;
  border-left: 1px solid #b0cbe4;
  padding: 0 28px 0 28px;
  display: flex;
  gap: 5px;
  font-weight: normal;
}

.moho_menu > ul > li > a i {
  font-size: 20px;
}

.moho_menu > ul > li:first-child > a {
  padding-right: unset;
}

.moho_menu > ul > li:last-child > a {
  border-left: unset;
}

.moho_menu > ul > li.active > a,
.moho_menu > ul > li.current-menu-item > a {
  color: #d8a448;
}

.moho_menu > ul > li > a:hover {
  color: #d8a448;
}

.moho_info-header {
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 999;
  align-items: center;
}

.moho_search-header {
  border-left: 1px solid #b0cbe4;
  margin-inline-end: 24px;
  padding-inline-end: 24px;
}

.moho_search-header i,
.moho_search-header svg {
  font-size: 30px;
  color: #e6eef6;
  fill: #e6eef6;
  cursor: pointer;
}

.moho_contact-header {
  display: flex;
  align-items: center;
}

a.moho_consulting-free {
  background: #d8a448;
  color: #ffffff;
  text-decoration: none;
  padding: 19px 30px;
  border-radius: 50px;
  font-size: 16px;
}

a.moho_call {
  background: #e6eef6;
  padding: 19px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

a.moho_call i,
.moho_call svg {
  color: #002547;
  fill: #002547;
  font-size: 20px;
}

.moho_header-menu-mobile {
  display: none;
}

.moho_header-mobile {
  background: #e6eef6;
  padding: 13px 0;
}

.moho_menu-logo-mobile {
  display: flex;
  justify-content: space-between;
}

.moho_logo-menu-mobile {
  display: flex;
  align-items: center;
}

.moho_menu-hamber {
  border: 1px solid #002547;
  border-radius: 50px;
  padding: 12px 14px;
  margin-inline-end: 8px;
  cursor: pointer;
}

.moho_menu-logo-mobile i {
  font-size: 25px;
}

.moho_logo-menu-mobile a {
  text-decoration: none;
  padding-inline-end: 8px;
}

.moho_logo-menu-mobile a i,
.moho_logo-menu-mobile a svg {
  background: #d8a448;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  color: #ffffff;
  fill: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* wpcode start --- mobile logo image styles */
.moho_logo-menu-mobile .moho_logo-image {
  padding-inline-end: 8px;
}

.moho_logo-menu-mobile .moho_logo-image img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 6px;
}
/* wpcode end --- mobile logo image styles */

.moho_logo-menu-mobile a h3 {
  font-size: 13px;
  color: #002547;
}

.moho_logo-menu-mobile a span {
  font-size: 11px;
  color: #3379b9;
}

.moho_main-menu-mobile {
  background: #002547d4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.moho_main-menu-mobile.active {
  visibility: visible;
  opacity: 1;
  padding-top: 26px;
}

.moho_main-menu-mobile.active .moho_menu-mobile {
  transform: translateX(0);
  gap: 40px;
}

.moho_close-menu {
  margin-inline-end: 16px;
  position: absolute;
  left: 20px;
  top: 26px;
  cursor: pointer;
}

.moho_close-menu i {
  color: #fff;
  font-size: 25px;
}

.moho_menu-mobile {
  background: #feffff;
  border-radius: 24px 0 0 24px;
  width: 278px;
  height: 700px;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  padding: 20px 16px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;

  /* Slide Animation */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.moho_menu-mobile > .moho_mobile-menu-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-inline-end: 2px;
}

.moho_search-mobile {
  border: 1px solid #ecf2f8;
  background: #f9fbfd;
  padding: 8px 10px;
  border-radius: 50px;
}

.moho_search-mobile span,
.moho-search-form {
  /* Apply to form as well */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #8ab2d7;
}

.moho_search-mobile span i,
.moho-search-btn {
  /* Apply to button as well */
  background: #d8a448;
  color: #feffff;
  border-radius: 50px;
  padding: 15px;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.moho_search-mobile span i {
  background: #d8a448;
  color: #feffff;
  border-radius: 50px;
  padding: 15px;
  font-size: 19px;
}

.moho_menu-mobile ul {
  list-style: none;
  padding: 0;
}

.moho_menu-mobile > .moho_mobile-menu-list > li {
  margin-bottom: 0;
}

.moho_menu-mobile .moho_mobile-menu-list .sub-menu li {
  margin-bottom: 0;
}

.moho_menu-mobile > .moho_mobile-menu-list > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #002547;
  font-size: 14px;
  font-weight: 500;
}

.moho_menu-mobile
  > .moho_mobile-menu-list
  > li
  > .moho_mobile-menu-item-head
  > a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.moho_menu-mobile > .moho_mobile-menu-list > li.active > a,
.moho_menu-mobile > .moho_mobile-menu-list > li.current-menu-item > a,
.moho_menu-mobile
  > .moho_mobile-menu-list
  > li.active
  > .moho_mobile-menu-item-head
  > a,
.moho_menu-mobile
  > .moho_mobile-menu-list
  > li.current-menu-item
  > .moho_mobile-menu-item-head
  > a {
  color: #d8a448;
}

.moho_menu-mobile > .moho_mobile-menu-list > li > a:hover,
.moho_menu-mobile
  > .moho_mobile-menu-list
  > li
  > .moho_mobile-menu-item-head
  > a:hover {
  color: #d8a448;
}

.moho_menu-mobile > .moho_mobile-menu-list > li > a i,
.moho_menu-mobile
  > .moho_mobile-menu-list
  > li
  > .moho_mobile-menu-item-head
  > a
  i {
  font-size: 19px;
}

.moho_call-menu-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #b0cbe4;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 8px;
}

.moho_call-menu-mobile a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  color: #002547;
}

.moho_call-menu-mobile a span {
  color: #d8a448;
}

.moho_call-menu-mobile a i {
  color: #d8a448;
  font-size: 20px;
  margin-inline-start: 5px;
}

@media screen and (max-width: 1024px) {
  .moho_header-pg {
    display: none;
  }

  .moho_header-menu-mobile {
    display: block;
  }

  .moho_header-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
  }
}

@media screen and (max-width: 425px) {
  .moho_menu-hamber {
    padding: 7px 8px;
  }

  .moho_logo-menu-mobile a i {
    width: 45px;
    height: 45px;
  }

  a.moho_consulting-free {
    padding: 10px 20px 14px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  a.moho_consulting-free {
    padding: 10px 12px 14px 12px;
  }
}

/* Mobile Search Form Styles */
.moho-search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.moho-search-input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  color: #8ab2d7;
  font-size: 12px;
  padding: 0;
}

.moho-search-input::placeholder {
  color: #8ab2d7;
  opacity: 1;
  /* Firefox */
}

.moho-search-input::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #8ab2d7;
}

.moho-search-btn {
  border: none;
  display: flex;
  align-items: center;
  background: #d8a448;
  color: #feffff;
  border-radius: 50px;
  padding: 15px;
}

/* Search Box Styles */
.moho_search-header {
  position: relative;
  cursor: pointer;
}

.moho_box-search {
  position: absolute;
  background: #f9fbfd;
  border: 1px solid #ecf2f8;
  border-radius: 24px;
  right: -360px;
  top: 60px;
  width: 389px;
  height: 119px;
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.moho_box-search.is-active {
  display: flex;
}

.moho_searching {
  border: 1px solid #ecf2f8;
  width: 341px;
  height: 56px;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

/* Form Styles to match User's Span Styles */
.moho_searching form {
  display: flex;
  align-items: center;
  padding: 16px 14px;
  /* From user's span */
  width: 100%;
  color: #8ab2d7;
  /* From user's span */
  font-size: 16px;
  /* From user's span */
  gap: 10px;
  /* From user's span */
}

.moho_searching input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  color: #8ab2d7;
  /* text color */
  font-size: inherit;
}

.moho_searching input::placeholder {
  color: #8ab2d7;
  opacity: 1;
  /* Ensure placeholder color is visible */
}

.moho_searching button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #0057a8;
  /* From user's span i color */
}

.moho_searching button i,
.moho_searching button svg {
  font-size: 25px;
  /* Adjust if needed, user didn't specify size but implied icon */
  color: #0057a8;
}

/*--------------------------------------------------------------
# Footer New
--------------------------------------------------------------*/
footer {
  margin-bottom: 41px;
  margin-top: 114px;
}

.moho_top-footer {
  background: #f9fbfd;
  border: 1px solid #ecf2f8;
  display: flex;
  padding: 30px 250px;
  height: 182px;
  gap: 40px;
  justify-content: space-between;
}

.moho_logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-width: 105px;
}

.moho_logo-footer i {
  width: 51px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d8a448;
  color: #feffff;
  border-radius: 50px;
  margin-bottom: 10px;
  font-size: 25px;
}

/* wpcode start --- footer logo image styles */
.moho_logo-footer--image {
  min-width: 140px;
  justify-content: center;
  gap: 8px;
}

.moho_logo-footer-image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
}

.moho_logo-footer-image img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}
/* wpcode end --- footer logo image styles */

.moho_logo-footer h2 {
  font-size: 17px;
  font-weight: 500;
  color: #002547;
}

.moho_logo-footer p {
  font-size: 15px;
  color: #002547;
  margin: 0;
}

span.moho_border-top-footer {
  border-right: 1px solid #e6eef6;
}

.moho_info-top-footer {
  display: flex;
  gap: 40px;
  align-items: center;
}

.moho_info-top-footer p {
  width: 686px;
  margin: 0;
  font-size: 16px;
  line-height: 32px;
  color: #002547;
}

.moho_top-footer iframe {
  border: 1px solid #0a264738 !important;
  border-radius: 16px;
  width: 263px;
  height: 120px;
}

.moho_main-footer {
  background: url("../../footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  padding: 42px 250px;
  height: 421px;
  justify-content: space-around;
}

.footer-content {
  display: flex;
  gap: 46px;
  justify-content: space-between;
}

.moho_link-footer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

span.moho_icon-title-link-footer {
  width: 24px;
  height: 5px;
  background: #d8a448;
  border-radius: 50px 50px 50px 24px;
}

.moho_link-footer-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #e6eef6;
  margin: 0;
}

.moho_link-footer-title h3 span {
  color: #d8a448;
}

.moho_useful-link-footer {
  display: flex;
  flex-direction: column;
}

.moho_useful-link-footer ul {
  width: 260px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.moho_useful-link-footer ul li {
  width: 120px;
}

.moho_useful-link-footer ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #e6eef6;
}

.moho_useful-link-footer ul li a:hover {
  margin-right: 10px;
}

.moho_contact-us-footer {
  width: 438px;
}

.moho_items-contant-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moho_footer-contact-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moho_footer-contact-us h4 {
  font-size: 16px;
  color: #e6eef6;
  margin: 0;
  width: 90px;
}

.moho_footer-contact-us span {
  color: #e6eef6;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 308px;
}

.moho_social-footer {
  width: 333px;
}

.moho_social-items-footer {
  display: flex;
  gap: 16px;
}

.moho_item-social {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #e6eef6;
  border-radius: 16px;
  width: auto;
  height: 85px;
  padding: 0 20px;
  text-decoration: none;
  color: #002547;
}

.moho_item-social h6 {
  font-size: 14px;
  font-weight: 500;
  color: #002547;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

span.moho_border-social-item {
  border-left: 1px solid #548ec5;
  height: 16px;
}

.moho_item-social i {
  font-size: 24px;
}

.moho_item-social:hover {
  background: #ff6b35;
  color: #e6eef6;
}

.moho_item-social:hover h6 {
  color: #e6eef6;
}

.moho_item-social:hover span.moho_border-social-item {
  border-left: 1px solid #e6eef6;
}

.moho_footer-bottom {
  margin-top: 35px;
  padding-top: 32px;
  border-top: 1px solid #548ec5;
}

.moho_footer-copy-right p {
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: #e6eef6;
}

/* wpcode start --- copyright link style */
.moho_footer-copy-right p a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.moho_footer-copy-right p a:hover {
  opacity: 0.8;
}
/* wpcode end --- copyright link style */

.moho_footer-jump-top {
  position: absolute;
  left: 90px;
  margin-top: 20px;
  cursor: pointer;
}

.moho_footer-jump-top h5 {
  font-size: 18px;
  font-weight: 500;
  color: #002547;
  margin: 0;
  display: flex;
  gap: 12px;
}

.moho_footer-jump-top h5 i {
  color: #d8a448;
  font-size: 24px;
}

@media screen and (max-width: 1024px) {
  .moho_top-footer {
    height: auto;
    flex-direction: column;
    padding: 30px 16px;
  }

  .moho_logo-footer {
    gap: 6px;
    width: 100%;
  }

  span.moho_border-top-footer {
    border-right: unset;
    border-bottom: 1px solid #e6eef6;
  }

  .moho_info-top-footer {
    flex-direction: column;
  }

  .moho_info-top-footer p {
    width: 100%;
  }

  .moho_top-footer iframe {
    width: 100%;
    height: 128px !important;
  }

  .moho_main-footer {
    background-size: cover !important;
    flex-direction: column !important;
    padding: 42px 16px !important;
    height: auto !important;
  }

  .footer-content {
    flex-direction: column;
  }

  .moho_footer-jump-top h5 {
    color: #d9d7cc;
  }

  .moho_footer-jump-top {
    left: 40px;
    margin-top: 0;
  }
}

@media screen and (max-width: 425px) {
  .moho_top-footer {
    padding: 30px 16px;
  }

  .moho_main-footer {
    background: url("../../footer-mobile.png");
    background-size: cover !important;
    padding: 41px 16px !important;
    height: 878px !important;
  }

  .moho_footer-contact-us h4 {
    display: none;
  }

  .moho_contact-us-footer {
    width: 100%;
  }

  .moho_social-footer {
    width: 100%;
  }

  .moho_social-items-footer {
    flex-wrap: wrap;
    gap: 16px;
  }

  footer {
    margin-bottom: 14px;
  }

  .moho_footer-jump-top {
    position: relative !important;
    display: flex !important;
    justify-content: flex-end !important;
    bottom: -40px !important;
    left: 0 !important;
  }

  .moho_footer-jump-top h5 {
    color: #002547;
  }
}

@media screen and (max-width: 320px) {
  .moho_item-social {
    height: 72px;
    padding: 0 10px;
  }
}

.moho_fild-form input {
  border: 1px solid #ecf2f8 !important;
  border-radius: 50px !important;
}

.moho_fild-form select {
  border: 1px solid #ecf2f8 !important;
  border-radius: 50px !important;
}

.moho_fild-form textarea {
  border: 1px solid #ecf2f8 !important;
  border-radius: 24px !important;
  height: 175px !important;
}

.ff-default .ff-el-form-control {
  color: #8ab2d7 !important;
  text-align: right;
  direction: rtl;
  height: 56px;
  font-family: "yekanbakh";
}

.ff-default .ff-el-form-control:focus {
  border-color: #002547 !important;
}

form.fluent_form_3 .wpf_has_custom_css.ff-btn-submit {
  background-color: rgba(255, 107, 53, 1);
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 20px 12px 20px;
}

button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style.wpf_has_custom_css {
  position: relative;
  padding-left: 48px !important;
  border: unset !important;
}

button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style.wpf_has_custom_css::before {
  content: "";
  background: url("https://websavant.ir/pars-gostar/wp-content/uploads/2025/12/arrow-left.svg")
    center/30px no-repeat #fff;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

form.fluent_form_3 .wpf_has_custom_css.ff-btn-submit:hover {
  background: #002547 !important;
  color: #ffffff !important;
  opacity: 1;
  border: unset !important;
}

.ff-default .ff-el-form-control::placeholder {
  color: #8ab2d7;
  opacity: 1;
}

.ff-default .ff-el-form-control::-webkit-input-placeholder {
  color: #8ab2d7;
}

.ff-default .ff-el-form-control::-moz-placeholder {
  color: #8ab2d7;
}

.ff-default .ff-el-form-control:-ms-input-placeholder {
  color: #8ab2d7;
}

select.ff-el-form-control:not([size]):not([multiple]) {
  color: #002547 !important;
}

.ff-default .ff-el-form-control {
  color: #002547 !important;
}

form.fluent_form_4 .wpf_has_custom_css.ff-btn-submit {
  position: relative;
  padding-left: 48px !important;
  width: 100%;
  display: flex;
  border-radius: 50px;
  border: unset !important;
}

form.fluent_form_4 .wpf_has_custom_css.ff-btn-submit::before {
  content: "";
  background: url("https://websavant.ir/pars-gostar/wp-content/uploads/2025/12/arrow-left.svg")
    center/30px no-repeat #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
}

form.fluent_form_4 .wpf_has_custom_css.ff-btn-submit:hover {
  background: #002547 !important;
  color: #ffffff !important;
  opacity: 1;
  border: unset !important;
}

/*................Archive Blog Style................*/

.moho_bg-breadcrumb-blog {
  background: url("../../bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 519px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.moho_bg-breadcrumb-blog h2 {
  font-size: 32px;
  font-weight: 800;
  color: #e6eef6;
  margin-bottom: 32px;
}

.moho_breadcrumb-archive-blog {
  display: flex;
  align-items: center;
  gap: 16px;
}

.moho_breadcrumb-archive-blog a {
  text-decoration: none;
  color: #e6eef6;
}

.moho_breadcrumb-archive-blog a i {
  color: #e6eef6;
  font-size: 25px;
}

.moho_breadcrumb-archive-blog span i {
  font-size: 20px;
  color: #e6eef6;
}

.moho_breadcrumb-archive-blog h3 {
  font-size: 18px;
  font-weight: 400;
  color: #e6eef6;
  margin: 0;
}

.moho_content-archive-blog-grid {
  display: flex;
  gap: 20px;
  margin-top: 64px;
  max-width: 1200px;
}

.moho_sidebar-archive-blog {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moho_sidebar-items-archive-blog {
  display: flex;
  flex-direction: column;
  background: #f9fbfd;
  border: 1px solid #ecf2f8;
  border-radius: 24px;
  padding: 24px;
  width: 285px;
}

.moho_sidebar-items-archive-blog h2 {
  font-size: 18px;
  font-weight: 600;
  color: #002547;
  margin-bottom: 20px;
}

span.moho_border-sidebar {
  border-bottom: 1px solid #e6eef6;
  margin-bottom: 20px;
}

.moho_sidebar-items-archive-blog ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moho_sidebar-items-archive-blog ul li {
  border-bottom: 1px dashed #548ec5;
  padding-bottom: 20px;
}

.moho_sidebar-items-archive-blog ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.moho_sidebar-items-archive-blog ul li a {
  font-size: 16px;
  color: #002547;
  text-decoration: none;
}

ul.moho_sub-item-articel {
  list-style: disc;
  padding-right: 32px;
  margin-top: 12px;
  gap: 10px;
}

ul.moho_sub-item-articel li {
  border: none;
  padding: 0;
  color: #548ec5;
}

.moho_content-single-blog {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.moho_img-single-blog {
  position: relative;
}

.moho_img-single-blog img {
  width: 895px;
  height: 487px;
  object-fit: cover;
  border: 8px solid #d8a448;
  border-radius: 40px;
}

.moho_info-single-blog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 413px;
  height: 56px;
  background: #feffff;
  border-radius: 50px;
  padding: 12px 20px;
  position: absolute;
  top: 24px;
  left: 24px;
}

.moho_info-single-blog h5 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0057a8;
  font-size: 16px;
  font-weight: 400;
}

.moho_info-single-blog h5 span i {
  font-size: 22px;
  color: #0057a8;
}

span.moho_border-info-single-blog {
  border-left: 1px solid #b0cbe4;
  height: 24px;
}

span.moho_border-content-single-blog {
  border-bottom: 1px solid #e6eef6;
}

.moho_boxes-info-single-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.moho_box-info-single-blog {
  width: 437.5px;
  height: max-content;
  background: #f9fbfd;
  padding: 24px;
  border: 1px solid #ecf2f8;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.moho_box-info-single-blog h2 {
  font-size: 20px;
  font-weight: 700;
  color: #002547;
  margin-bottom: 16px;
}

.moho_box-info-single-blog ul {
  padding-right: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.moho_box-info-single-blog ul li {
  font-size: 14px;
  font-weight: 400;
  color: #548ec5;
}

.moho_content-blog p {
  font-size: 16px;
  color: #002547;
  line-height: 32px;
  margin: 0;
}

.moho_content-single-blog-img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.moho_content-single-blog-img img {
  width: 437.5px;
  height: 413px;
  object-fit: cover;
  border: 8px solid #d8a448;
  border-radius: 40px;
}

.moho_result-single-blog {
  width: 100%;
  height: auto;
  padding: 24px;
  background: #f9fbfd;
  border: 1px solid #ecf2f8;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.moho_result-single-blog h2 {
  font-size: 20px;
  font-weight: 700;
  color: #002547;
}

.moho_result-single-blog p {
  font-size: 16px;
  color: #002547;
  margin: 0;
  line-height: 32px;
}

.moho_share-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moho_title-share-post p {
  font-size: 16px;
  font-weight: 600;
  color: #0057a8;
  margin: 0;
}

.moho_social-share-post ul {
  display: flex;
  flex-direction: row-reverse;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.moho_social-share-post ul li a {
  text-decoration: none;
}

.moho_social-share-post ul li a i {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8a448;
  color: #feffff;
  border-radius: 50px;
  font-size: 25px;
}

.moho_next-prev-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moho_next-prev-post a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #002547;
}

.moho_next-prev-post a i {
  color: #d8a448;
  font-size: 20px;
}

.container.moho_comments-single-blog {
  max-width: 1200px;
  margin-top: 120px;
  background: #f9fbfd;
  border: 1px solid #ecf2f8;
  border-radius: 24px;
  padding: 24px;
}

.moho_comment-post {
  background: #ecf2f8;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.moho_comment-post:last-child {
  margin-bottom: 0;
}

.moho_comment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moho_comment-name h2 {
  font-size: 16px;
  font-weight: 600;
  color: #002547;
  margin: 0;
}

.moho_comment-like-date {
  display: flex;
  align-items: center;
  gap: 16px;
}

.moho_comment-like-date h3 {
  font-size: 14px;
  font-weight: 400;
  color: #0057a8;
  margin: 0;
}

span.moho_border-comments-like-date {
  border-right: 1px solid #b0cbe4;
  height: 20px;
}

.moho_comment-like-dislike {
  display: flex;
  align-items: center;
}

.moho_comment-like-dislike h5 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

span.moho_comment-dislike {
  width: 21px;
  height: 22px;
  background: #feffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #dc3545;
  border-radius: 50px;
  padding-top: 3px;
}

h5.comment-dislike i {
  color: #dc3545;
}

span.moho_comment-like {
  width: 21px;
  height: 22px;
  background: #feffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #11461d;
  border-radius: 50px;
  padding-top: 3px;
}

h5.comment-like i {
  color: #28a745;
}

.moho_comment-post p,
.moho_comment-replay p {
  margin: 16px 0;
  font-size: 16px;
  color: #004f99;
  line-height: 32px;
}

.comment-reply-link {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: #0057a8;
  text-decoration: none;
}

.moho_comment-replay {
  background: #feffff;
  padding: 20px;
  border-radius: 20px;
  margin-top: 24px;
}

.children .moho_comment-post {
  margin-right: 40px;
}

span.moho_border-dashed-comments {
  border-top: 1px dashed #548ec5;
  display: block;
  margin-top: 48px;
  padding-bottom: 48px;
}

.moho_form-comment {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moho_form-row {
  display: flex;
  gap: 20px;
}

.moho_form-row .moho_form-group {
  flex: 1;
}

.moho_form-group input,
.moho_form-group textarea {
  width: 100%;
  border: 1px solid #ecf2f8 !important;
  border-radius: 24px;
  padding: 16px 24px;
  background: #feffff;
  color: #002547;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.moho_form-group input {
  border-radius: 50px;
  height: 56px;
  direction: rtl;
}

.moho_form-group textarea {
  height: 200px;
}

.moho_form-group input::placeholder,
.moho_form-group textarea::placeholder {
  color: #8ab2d7;
}

.moho_form-group input:focus,
.moho_form-group textarea:focus {
  border-color: #002547 !important;
}

.moho_submit-field {
  width: 100%;
}

.moho_btn-comment {
  width: 100%;
  height: 56px;
  background: #d8a448 !important;
  border: none !important;
  border-radius: 50px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 10px;
  transition: all 0.3s ease;
}

.moho_btn-comment:hover {
  background: #002547 !important;
}

.moho_btn-comment i {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moho_btn-comment i::before {
  content: "\f060";
  font-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
  color: #d8a448;
  font-size: 22px;
  transform: rotate3d(1, 1, 1, 45deg);
  display: inline-block;
}

.moho_form-comment .logged-in-as {
  margin-bottom: 15px;
  font-size: 14px;
  color: #002547;
}

@media (max-width: 768px) {
  .moho_form-row {
    flex-direction: column;
    gap: 20px;
  }
}

.moho_comment-post {
  background: #ecf2f8;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.moho_comment-post:last-child {
  margin-bottom: 0;
}

.moho_comment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moho_comment-name h2 {
  font-size: 16px;
  font-weight: 600;
  color: #002547;
  margin: 0;
}

.moho_comment-like-date {
  display: flex;
  align-items: center;
  gap: 16px;
}

.moho_comment-like-date h3 {
  font-size: 14px;
  font-weight: 400;
  color: #0057a8;
  margin: 0;
}

span.moho_border-comments-like-date {
  border-right: 1px solid #b0cbe4;
  height: 20px;
}

.moho_comment-like-dislike {
  display: flex;
  align-items: center;
}

.moho_comment-like-dislike h5 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

span.moho_comment-dislike {
  width: 21px;
  height: 22px;
  background: #feffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #dc3545;
  border-radius: 50px;
  padding-top: 3px;
}

h5.comment-dislike i {
  color: #dc3545;
}

span.moho_comment-like {
  width: 21px;
  height: 22px;
  background: #feffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #11461d;
  border-radius: 50px;
  padding-top: 3px;
}

h5.comment-like i {
  color: #28a745;
}

.moho_comment-post p,
.moho_comment-replay p {
  margin: 16px 0;
  font-size: 16px;
  color: #004f99;
  line-height: 32px;
}

.comment-reply-link {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: #0057a8;
  text-decoration: none;
}

.moho_comment-replay {
  background: #feffff;
  padding: 20px;
  border-radius: 20px;
  margin-top: 24px;
}

.children .moho_comment-replay {
  margin-right: 40px;
}

.moho_content-blog-archive {
  max-width: 1200px;
  display: flex;
  gap: 12px;
  margin-top: 64px;
  align-items: flex-start;
}

.moho_sidebar-blog-archive {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moho_sidebar-items-blog-archive {
  display: flex;
  flex-direction: column;
  background: #f9fbfd;
  border: 1px solid #ecf2f8;
  border-radius: 24px;
  padding: 24px;
  width: 285px;
}

.moho_sidebar-items-blog-archive h2 {
  font-size: 18px;
  font-weight: 600;
  color: #002547;
  margin-bottom: 20px;
}

.moho_sidebar-items-blog-archive a {
  display: flex;
  margin-bottom: 20px;
  color: #0057a8;
  gap: 10px;
}

.moho_sidebar-items-blog-archive a:last-child {
  margin-bottom: 0;
}

.moho_sidebar-items-blog-archive a:hover {
  color: #d8a448;
}

.moho_sidebar-items-blog-archive a span {
  width: 20px;
  height: 20px;
  background: #ecf2f8;
  border-radius: 6px;
}

.moho_sidebar-items-blog-archive a.active {
  color: #d8a448;
}

.moho_sidebar-items-blog-archive a.active span {
  background: #d8a448;
}

.moho_best-week-blog-img {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-bottom: 20px;
  overflow: hidden;
}

.moho_best-week-blog-img:last-child {
  margin-bottom: 0;
}

.moho_best-week-blog-img a {
  margin: 0;
}

.moho_best-week-blog-img a img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
}

.moho_info-best-blog h2 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 45px;
  font-weight: 400;
}

.moho_info-best-blog h2 {
  margin: 0;
}

.moho_sidebar-items-blog-archive ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 20px 23px;
  flex-wrap: wrap;
}

.moho_sidebar-items-blog-archive ul li a {
  color: #002547;
  text-decoration: underline;
}

.moho_items-blog-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.moho_item-blog {
  width: 285px;
  height: 293px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.moho_item-blog img {
  width: 285px;
  height: 293px;
  object-fit: cover;
}

.moho_item-blog:hover img {
  transform: scale(1.1);
}

.moho_contant-item-blog {
  position: absolute;
  top: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 293px;
  justify-content: space-between;
  cursor: pointer;
}

.moho_tag-comment {
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
}

.moho_tag-comment a {
  background: #d8a448;
  padding: 11px 16px;
  border-radius: 50px;
}

.moho_tag-comment span {
  background: #feffff;
  padding: 11px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.moho_tag-comment span i {
  font-size: 20px;
}

.moho_info-blog {
  height: 119.32px;
  background: #feffff;
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.moho_info-blog h2 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 600;
}

span.moho_border-blog {
  border-bottom: 1px solid #e6eef6;
}

.moho_read-more-blog {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.moho_read-more-blog a {
  display: flex;
}

.moho_read-more-blog a i {
  transform: rotate(45deg);
}

.moho_visit-more-item-blog {
  width: 100%;
}

.moho_visit-more-item-blog button {
  width: 100%;
  height: 48px;
  border: 1px solid;
  border-radius: 50px;
}

@media screen and (max-width: 2560px) {
  .moho_main-footer {
    height: 421px;
  }

  .moho_footer-jump-top {
    position: absolute;
    left: 90px;
    margin-top: 20px;
    cursor: pointer;
  }
}

@media screen and (max-width: 1440px) {
  .moho_main-footer {
    height: 358px;
  }

  .moho_footer-jump-top {
    left: 62px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .moho_content-archive-blog-grid {
    flex-direction: column;
  }

  .moho_sidebar-items-archive-blog {
    width: 100%;
  }

  .moho_img-single-blog img {
    width: 100%;
  }

  .moho_box-info-single-blog {
    width: 49%;
  }

  .moho_bg-breadcrumb-blog h2 {
    text-align: center;
    line-height: 65px;
  }
}

@media screen and (max-width: 768px) {
  .moho_box-info-single-blog {
    width: 100%;
  }

  .moho_content-single-blog-img img {
    width: 100%;
  }

  .moho_bg-breadcrumb-blog {
    padding: 0 16px;
  }

  .moho_breadcrumb-archive-blog {
    flex-wrap: wrap;
  }

  .moho_breadcrumb-archive-blog h3 {
    line-height: 32px;
  }

  .moho_content-blog-archive {
    flex-direction: column;
  }

  .moho_sidebar-blog-archive {
    width: 100%;
  }

  .moho_sidebar-items-blog-archive {
    width: 100%;
  }

  .moho_items-blog-archive {
    gap: 20px;
  }

  .moho_item-blog {
    width: 100%;
  }

  .moho_item-blog img {
    width: 100%;
  }

  .moho_contant-item-blog {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .moho_info-single-blog {
    width: 322px;
  }

  .moho_comment-info {
    flex-wrap: wrap;
    gap: 20px;
  }

  .moho_comment-like-date {
    width: 100%;
    justify-content: space-between;
  }

  span.moho_border-comments-like-date {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .moho_info-single-blog {
    width: 315px;
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  span.moho_border-info-single-blog {
    display: none;
  }
}