.jb-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  z-index: 999;
}

.jb-container {
  max-width: 1350px;
  margin: auto;
  padding: 3px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.jb-logo img {
  width: 178px;
}

.jb-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.jb-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jb-nav ul li {
  position: relative;
}

.jb-nav ul li a {
  text-decoration: none;
  color: #1a2a5d;
  font-size: 15px !important;
  font-weight: 500;
  padding: 10px 0;
  display: block;
}

.jb-nav ul li a i {
  font-size: 11px;
  margin-left: 5px;
}

.jb-dropdown {
  position: absolute;
  top: 62px;
  left: 0;
  min-width: 230px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  overflow: visible;
}

.jb-dropdown a {
  padding: 13px 18px !important;
  border-bottom: 1px solid #eee;
  color: #1a2a5d !important;
  font-size: 13px !important;
  background: #fff;
}

.jb-dropdown a:hover {
  background: #0b56a4;
  color: #fff !important;
}

.jb-nav ul li:hover > .jb-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sub Dropdown */
.jb-submenu-wrap {
  position: relative;
}

.jb-submenu-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.jb-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: 0.35s ease;
  overflow: hidden;
}

.jb-submenu-wrap:hover .jb-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(8px);
}

.jb-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.jb-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a2a5d;
}

.jb-phone i {
  font-size: 22px;
  color: #0b56a4;
}

.jb-phone strong {
  display: block;
  font-size: 13px;
}

.jb-phone span {
  font-size: 10px;
  font-weight: 600;
}

.jb-catalogue {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a2a5d;
  font-weight: 700;
  font-size: 12px;
}

.jb-catalogue i {
  font-size: 30px;
  color: #0b56a4;
}

.jb-menu-btn {
  display: none;
  font-size: 25px;
  color: #0b56a4;
  cursor: pointer;
}

.jb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 998;
}

.jb-overlay.active {
  display: block;
}

.jb-close {
  display: none;
}

/* Mobile */
@media (max-width: 991px) {
  .jb-container {
    padding: 12px 18px;
  }

  .jb-menu-btn {
    display: block;
  }

  .jb-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 25px;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }

  .jb-nav.active {
    right: 0;
  }

  .jb-close {
    display: block;
    align-self: flex-end;
    font-size: 24px;
    color: #0b56a4;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .jb-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .jb-nav ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .jb-nav ul li a {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .jb-dropdown {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
    background: #f7f9fc;
    overflow: hidden;
  }

  .jb-dropdown.show {
    display: block;
    animation: jbSlideDown 0.35s ease;
  }

  .jb-dropdown a {
    background: transparent;
  }

  .jb-sub-dropdown {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
    background: #eef3fb;
  }

  .jb-sub-dropdown.show {
    display: block;
    animation: jbSlideDown 0.35s ease;
  }

  .jb-submenu-wrap:hover .jb-sub-dropdown {
    transform: none;
  }

  .jb-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 20px;
  }
}

@keyframes jbSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================== banner section starts ========================== */
.jb-about-section {
  width: 100%;
  background: #f1f1f1;
  padding: 104px 0 28px;
}

/* .jb-about-section .container {
  max-width: 1450px;
} */

.jb-about-row {
  align-items: stretch;
}

.jb-about-left {
  height: 100%;
  padding: 7px 28px 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jb-about-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #050505;
  margin-bottom: 22px;
}

.jb-about-description p {
  margin-bottom: 0;
}

.jb-about-description strong {
  font-weight: 800;
}

.jb-about-features {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 30px;
  margin-top: 17px;
  margin-bottom: 44px;
}

.jb-feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jb-feature-icon {
  width: 45px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2436c4;
  font-size: 39px;
}

.jb-feature-content h4 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: #545454;
  margin: 0 0 5px;
}

.jb-feature-content p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #555555;
  margin: 0;
  white-space: nowrap;
}

.jb-about-buttons {
  display: flex;
  align-items: center;
  gap: 36px;
}

.jb-about-btn {
  min-width: 242px;
  min-height: 54px;
  padding: 17px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2436c4;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
}

.jb-about-btn-primary {
  background: #293bb9;
  border-color: #293bb9;
  color: #ffffff;
}

.jb-about-btn-primary:hover {
  background: #182a9b;
  border-color: #182a9b;
  color: #ffffff;
  transform: translateY(-2px);
}

.jb-about-btn-outline {
  background: transparent;
  color: #050505;
}

.jb-about-btn-outline:hover {
  background: #293bb9;
  border-color: #293bb9;
  color: #ffffff;
  transform: translateY(-2px);
}

.jb-about-image {
  width: 100%;
  height: 100%;
  min-height: 518px;
  overflow: hidden;
}

.jb-about-image img {
  width: 100%;
  height: 100%;
  min-height: 518px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1199px) {
  .jb-about-left {
    padding-right: 15px;
  }

  .jb-about-description {
    font-size: 18px;
    line-height: 1.8;
  }

  .jb-about-features {
    gap: 20px;
  }

  .jb-feature-content h4 {
    font-size: 16px;
  }

  .jb-feature-content p {
    font-size: 15px;
  }

  .jb-about-btn {
    min-width: 205px;
    min-height: 62px;
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .jb-about-section {
    padding: 42px 0;
  }

  .jb-about-left {
    padding: 0 0 35px;
  }

  .jb-about-description {
    font-size: 17px;
    line-height: 1.75;
  }

  .jb-about-image {
    min-height: auto;
  }

  .jb-about-image img {
    min-height: auto;
    height: auto;
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .jb-about-section {
    padding: 35px 0;
  }

  .jb-about-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .jb-about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .jb-feature-content h4 {
    font-size: 17px;
  }

  .jb-feature-content p {
    font-size: 15px;
    white-space: normal;
  }

  .jb-about-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .jb-about-btn {
    width: 100%;
    min-width: 100%;
    min-height: 58px;
  }

  .jb-about-image img {
    aspect-ratio: 1 / 0.9;
  }
}

@media (max-width: 575px) {
  .jb-about-section {
    padding: 30px 0;
  }

  .jb-about-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .jb-feature-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 34px;
  }

  .jb-feature-content h4 {
    font-size: 16px;
  }

  .jb-feature-content p {
    font-size: 14px;
  }
}
/* ========================== banner section end ========================== */

/* ============================= category section start   */
.microscope-category-section {
  width: 100%;
  background: #ffffff;
  padding: 36px 0 66px;
}

.microscope-category-section .container {
  max-width: 1420px;
}

.microscope-category-row {
  align-items: stretch;
}

.microscope-category-col {
  position: relative;
}

.microscope-category-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 138px;
  background: #dedede;
}

.microscope-category-card {
  width: 100%;
  min-height: 138px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 28px;
  text-decoration: none;
}

.microscope-category-image {
  width: 100px;
  min-width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.microscope-category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.microscope-category-content {
  padding-top: 0;
}

.microscope-category-content h3 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #0000a8;
  margin: 0 0 8px;
}

.microscope-category-content p {
  max-width: 190px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #111111;
  margin: 0;
}

.microscope-bottom-line {
  width: 225px;
  height: 2px;
  background: #1233c2;
  margin: 60px auto 0;
}

@media (max-width: 1199px) {
  .microscope-category-card {
    gap: 14px;
    padding: 0 18px;
  }

  .microscope-category-image {
    width: 88px;
    min-width: 88px;
    height: 88px;
  }

  .microscope-category-content h3 {
    font-size: 20px;
  }

  .microscope-category-content p {
    font-size: 17px;
    line-height: 1.8;
  }
}

@media (max-width: 991px) {
  .microscope-category-section {
    padding: 34px 0 50px;
  }

  .microscope-category-row {
    row-gap: 34px;
  }

  .microscope-category-col:nth-child(2)::after {
    display: none;
  }

  .microscope-category-col:nth-child(3)::before,
  .microscope-category-col:nth-child(4)::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: #e2e2e2;
  }

  .microscope-category-card {
    min-height: 128px;
    padding: 0 24px;
  }

  .microscope-bottom-line {
    margin-top: 65px;
  }
}

@media (max-width: 767px) {
  .microscope-category-section {
    padding: 28px 0 40px;
  }

  .microscope-category-row {
    row-gap: 28px;
  }

  .microscope-category-card {
    min-height: 120px;
    gap: 12px;
    padding: 0 12px;
  }

  .microscope-category-image {
    width: 78px;
    min-width: 78px;
    height: 78px;
  }

  .microscope-category-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .microscope-category-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .microscope-category-col:not(:last-child)::after {
    height: 120px;
  }

  .microscope-bottom-line {
    width: 180px;
    margin-top: 45px;
  }
}

@media (max-width: 575px) {
  .microscope-category-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .microscope-category-row {
    --bs-gutter-x: 8px;
  }

  .microscope-category-card {
    min-height: 112px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0 7px;
  }

  .microscope-category-image {
    width: 68px;
    min-width: 68px;
    height: 68px;
  }

  .microscope-category-content h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .microscope-category-content p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }

  .microscope-category-col:not(:last-child)::after {
    height: 145px;
  }

  .microscope-category-col:nth-child(3)::before,
  .microscope-category-col:nth-child(4)::before {
    left: 5px;
    right: 5px;
  }

  .microscope-bottom-line {
    width: 145px;
    margin-top: 38px;
  }
}
/* ============================= category section end   */

/* ==================== case on sstart  */
.service-feature-section {
  width: 100%;
  /* padding: 52px 0; */
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 70px;
}

.service-feature-section .container {
  max-width: 1640px;
}

.service-feature-wrapper {
  border: 1px solid #e8e8e8;
  background: #ffffff;
}

.service-feature-row {
  margin: 0;
}

.service-feature-col {
  padding: 0;
  position: relative;
}

.service-feature-col:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}

.service-feature-box {
  position: relative;
  min-height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 42px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.service-feature-box::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  left: -35px;
  top: 44px;
  border-radius: 50%;
  background: rgba(255, 222, 222, 0.42);
  z-index: -1;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1),
    opacity 0.35s ease;
}

.service-feature-box:hover {
  background: #fffdfd;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
  z-index: 2;
}

.service-feature-box:hover::before {
  transform: translate3d(17px, -7px, 0) scale(1.15);
  opacity: 0.8;
}

.service-feature-icon {
  width: 52px;
  min-width: 52px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 43px;
  line-height: 1;
  transform-style: preserve-3d;
  perspective: 900px;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1),
    color 0.35s ease,
    filter 0.35s ease;
}

.service-feature-box:hover .service-feature-icon {
  color: #273bbd;
  filter: drop-shadow(8px 10px 8px rgba(39, 59, 189, 0.18));
  transform: perspective(900px) rotateY(360deg) rotateX(12deg) translateZ(18px)
    scale(1.08);
}

.service-feature-content {
  position: relative;
  z-index: 2;
}

.service-feature-content h3 {
  font-size: 17px;
  line-height: 1.3;
  /* font-weight: 800; */
  color: #111111;
  margin: 0 0 10px;
  color: #1a2a5d;
}

.service-feature-content p {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: #888888;
  margin: 0;
}

@media (max-width: 1399px) {
  .service-feature-box {
    gap: 20px;
    padding: 28px 28px;
  }

  .service-feature-content h3 {
    font-size: 18px;
  }

  .service-feature-content p {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .service-feature-wrapper {
    border-bottom: 0;
  }

  .service-feature-col {
    border-bottom: 1px solid #e8e8e8;
  }

  .service-feature-col:nth-child(2) {
    border-right: 0;
  }

  .service-feature-col:nth-child(3),
  .service-feature-col:nth-child(4) {
    border-bottom: 1px solid #e8e8e8;
  }

  .service-feature-box {
    min-height: 135px;
  }
}

@media (max-width: 767px) {
  .service-feature-section {
    padding: 35px 0;
  }

  .service-feature-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-feature-wrapper {
    border-bottom: 1px solid #e8e8e8;
  }

  .service-feature-col {
    border-bottom: 1px solid #e8e8e8;
  }

  .service-feature-col:nth-child(2n) {
    border-right: 0;
  }

  .service-feature-col:nth-child(3),
  .service-feature-col:nth-child(4) {
    border-bottom: 0;
  }

  .service-feature-box {
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 12px;
  }

  .service-feature-box::before {
    width: 62px;
    height: 62px;
    left: -28px;
    top: 25px;
  }

  .service-feature-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    font-size: 37px;
  }

  .service-feature-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .service-feature-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .service-feature-section {
    padding: 28px 0;
  }

  .service-feature-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-feature-row {
    --bs-gutter-x: 0;
  }

  .service-feature-box {
    min-height: 155px;
    padding: 22px 8px;
  }

  .service-feature-icon {
    font-size: 34px;
  }

  .service-feature-content h3 {
    font-size: 15px;
  }

  .service-feature-content p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-feature-box,
  .service-feature-box::before,
  .service-feature-icon {
    transition: none;
  }

  .service-feature-box:hover,
  .service-feature-box:hover .service-feature-icon {
    transform: none;
  }
}
/* ==================== case on end  */

/* ==================================== product section start  */
.jb-product-section {
  width: 100%;
  padding: 45px 0 28px;
  background: #ffffff;
}

/* .jb-product-section .container {
            max-width: 1440px;
        } */

/* Heading and tabs */

.jb-product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.jb-product-heading {
  position: relative;
  padding-left: 16px;
  white-space: nowrap;
}

.jb-product-heading::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 1px;
  background: #ff2828;
}

.jb-product-heading h2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  color: #111111;
  margin: 0;
}

.jb-product-heading h2 strong {
  font-weight: 800;
}

.jb-product-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jb-product-tabs button {
  position: relative;
  border: 0;
  outline: 0;
  box-shadow: none;
  padding: 5px 0 9px;
  background: transparent;
  color: #9b9b9b;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.jb-product-tabs button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ff3131;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.jb-product-tabs button:hover,
.jb-product-tabs button.active {
  color: #111111;
}

.jb-product-tabs button.active::after {
  width: 32px;
}

/* Left category list */

.jb-product-sidebar {
  padding-right: 22px;
}

.jb-product-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jb-product-sidebar-list li {
  border-bottom: 1px solid #e6e6e6;
}

.jb-product-sidebar-list button {
  width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  padding: 13px 0 15px;
  background: transparent;
  color: #111111;
  text-align: left;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.jb-product-sidebar-list button:hover,
.jb-product-sidebar-list button.active {
  color: #1f36b8;
  padding-left: 5px;
}

/* Product grid */

.jb-product-grid {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
}

.jb-product-item {
  display: block;
}

.jb-product-card {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.jb-product-image-box {
  position: relative;
  width: 100%;
  /*height: 300px;*/
  overflow: hidden;
  /*background: #ddf4ff;*/
}

.jb-product-image-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.jb-product-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit:contain;
  transition: transform 0.55s ease;
}

.jb-product-card:hover .jb-product-image-box img {
  transform: scale(1.07);
}

.jb-product-wishlist {
  position: absolute;
  top: 8px;
  right: 9px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.jb-product-wishlist:hover,
.jb-product-wishlist.active {
  background: #273bbd;
  color: #ffffff;
  transform: translateY(-2px);
}

.jb-product-wishlist.active i {
  font-weight: 900;
}

.jb-product-info {
  padding-top: 15px;
}

.jb-product-title {
  min-height: 44px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
}

.jb-product-title a {
  display: block;
  color: #111111;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.jb-product-title a:hover {
  color: #273bbd;
}

.jb-no-products {
  display: none;
  padding: 70px 20px;
  text-align: center;
  border: 1px solid #eeeeee;
  color: #777777;
  font-size: 17px;
}

@media (max-width: 1199px) {
  .jb-product-tabs {
    gap: 25px;
  }

  .jb-product-image-box {
    height: 210px;
  }
}

@media (max-width: 991px) {
  .jb-product-section {
    padding: 35px 0;
  }

  .jb-product-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .jb-product-tabs {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 28px;
  }

  .jb-product-sidebar {
    margin-bottom: 25px;
    padding-right: 0;
  }

  .jb-product-sidebar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .jb-product-sidebar-list li {
    border: 0;
  }

  .jb-product-sidebar-list button {
    width: auto;
    padding: 9px 15px;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
  }

  .jb-product-sidebar-list button:hover,
  .jb-product-sidebar-list button.active {
    padding-left: 15px;
    border-color: #273bbd;
    background: #273bbd;
    color: #ffffff;
  }

  .jb-product-image-box {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .jb-product-heading h2 {
    font-size: 20px;
  }

  .jb-product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .jb-product-tabs li {
    width: 100%;
  }

  .jb-product-tabs button {
    width: 100%;
    padding: 10px 8px;
    border: 1px solid #e5e5e5;
    text-align: center;
  }

  .jb-product-tabs button.active {
    border-color: #273bbd;
    color: #273bbd;
  }

  .jb-product-tabs button::after {
    display: none;
  }

  .jb-product-grid {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 24px;
  }

  .jb-product-image-box {
    height: 210px;
  }
}

@media (max-width: 575px) {
  .jb-product-section {
    padding: 28px 0;
  }

  .jb-product-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .jb-product-heading {
    white-space: normal;
  }

  .jb-product-heading h2 {
    font-size: 18px;
  }

  .jb-product-sidebar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jb-product-sidebar-list li {
    width: 100%;
  }

  .jb-product-sidebar-list button {
    width: 100%;
    height: 100%;
    padding: 9px 8px;
    text-align: center;
    font-size: 12px;
  }

  .jb-product-sidebar-list button:hover,
  .jb-product-sidebar-list button.active {
    padding-left: 8px;
  }

  .jb-product-image-box {
    height: 165px;
  }

  .jb-product-wishlist {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .jb-product-info {
    padding-top: 10px;
  }

  .jb-product-title {
    min-height: 58px;
    padding-bottom: 10px;
  }

  .jb-product-title a {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 390px) {
  .jb-product-image-box {
    height: 145px;
  }

  .jb-product-tabs button {
    font-size: 12px;
  }
}
/* ==================================== product section end  */

/* ============================================= micro camra start  */
.microscope-product {
  width: 100%;
  padding: 28px 0 55px;
  overflow: hidden;
}

.microscope-product-container {
  width: 90%;
  max-width: 1605px;
  margin: auto;
}

.microscope-product-heading {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-left: 25px;
  margin-bottom: 36px;
}

.microscope-product-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 42px;
  background: #ef242d;
}

.microscope-product-heading h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 400;
  color: #101010;
}

.microscope-product-heading h2 strong {
  font-weight: 700;
}

.microscope-product-slider {
  margin-left: -18px;
  margin-right: -18px;
}

.microscope-product-slide {
  padding: 0 18px;
}

.microscope-product-card {
  width: 100%;
}

.microscope-product-image-box {
  position: relative;
  width: 100%;
  /*height: 344px;*/
  /*background: #f0f0f0;*/
  overflow: hidden;
}

.microscope-product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.microscope-product-card:hover .microscope-product-image-box img {
  transform: scale(1.045);
}

.microscope-product-wishlist {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 40px;
  height: 40px;
  border: 0;
  outline: 0;
  /* background: #ffffff; */
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  display:none;
}

.microscope-product-wishlist:hover,
.microscope-product-wishlist.active {
  color: #e51f2a;
}

.microscope-product-content {
  padding-top: 19px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  min-height: 105px;
}

.microscope-product-rating {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 9px;
  line-height: 1;
}

.microscope-product-rating i {
  font-size: 15px;
  color: #f8b500;
}

.microscope-product-rating i.empty-star {
  color: #d2d2d2;
}

.microscope-product-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #111111;
}

.microscope-product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.microscope-product-title a:hover {
  color: #e51f2a;
}

.microscope-product-slider .slick-prev,
.microscope-product-slider .slick-next {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

.microscope-product-slider:hover .slick-prev,
.microscope-product-slider:hover .slick-next {
  opacity: 1;
  visibility: visible;
  display: none;
}

.microscope-product-slider .slick-prev {
  left: 0;
  display: none !important;
}

.microscope-product-slider .slick-next {
  right: 0;
  display: none !important;
}

.microscope-product-slider .slick-prev::before,
.microscope-product-slider .slick-next::before {
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  color: #111111;
  opacity: 1;
  display: none;
}

.microscope-product-slider .slick-prev::before {
  content: "\f053";
}

.microscope-product-slider .slick-next::before {
  content: "\f054";
}

.microscope-product-slider .slick-prev:hover,
.microscope-product-slider .slick-next:hover {
  background: #e51f2a;
  border-color: #e51f2a;
  display: none;
}

.microscope-product-slider .slick-prev:hover::before,
.microscope-product-slider .slick-next:hover::before {
  color: #ffffff;
  display: none;
}

.microscope-product-slider .slick-dots {
  bottom: -36px;
}

.microscope-product-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.microscope-product-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.microscope-product-slider .slick-dots li button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bcbcbc;
  opacity: 1;
}

.microscope-product-slider .slick-dots li.slick-active button::before {
  background: #e51f2a;
}

@media (max-width: 1399px) {
  .microscope-product-container {
    width: 92%;
  }

  .microscope-product-image-box {
    height: 305px;
  }

  .microscope-product-title {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .microscope-product-image-box {
    height: 310px;
  }
}

@media (max-width: 991px) {
  .microscope-product {
    padding: 45px 0 60px;
  }

  .microscope-product-heading {
    margin-bottom: 28px;
  }

  .microscope-product-heading h2 {
    font-size: 26px;
  }

  .microscope-product-slider {
    margin-left: -12px;
    margin-right: -12px;
  }

  .microscope-product-slide {
    padding: 0 12px;
  }

  .microscope-product-image-box {
    height: 330px;
  }
}

@media (max-width: 767px) {
  .microscope-product-container {
    width: 94%;
  }

  .microscope-product-heading {
    padding-left: 18px;
  }

  .microscope-product-heading h2 {
    font-size: 24px;
  }

  .microscope-product-image-box {
    height: 315px;
  }

  .microscope-product-wishlist {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .microscope-product-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .microscope-product {
    padding: 35px 0 55px;
  }

  .microscope-product-heading {
    min-height: 38px;
    margin-bottom: 24px;
  }

  .microscope-product-heading::before {
    height: 38px;
  }

  .microscope-product-heading h2 {
    font-size: 22px;
  }

  .microscope-product-slider {
    margin-left: -7px;
    margin-right: -7px;
  }

  .microscope-product-slide {
    padding: 0 7px;
  }

  .microscope-product-image-box {
    height: 285px;
  }

  .microscope-product-content {
    padding-top: 14px;
    min-height: 100px;
  }

  .microscope-product-rating {
    margin-bottom: 8px;
  }

  .microscope-product-rating i {
    font-size: 15px;
  }

  .microscope-product-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .microscope-product-wishlist {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .microscope-product-image-box {
    height: 205px;
  }
}
/* ============================================= micro camra end  */

/* ============================== pdf section start  */
.microscope-software {
  width: 100%;
  padding: 30px 20px 45px;
}

/* .microscope-software-container {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
} */

.microscope-software-heading {
  margin: 0 0 32px 13px;
  font-size: 35px;
  line-height: 1.25;
  font-weight: 700;
  color: #10199b;
}

.microscope-software-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.microscope-software-card {
  width: 100%;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  padding: 12px 12px 13px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.microscope-software-card:hover {
  transform: translateY(-5px);
  border-color: #d3d3d3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.microscope-software-image {
  width: 100%;
  /* height: 278px; */
  overflow: hidden;
  background: #f5f5f5;
}

.microscope-software-image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.microscope-software-card:hover .microscope-software-image img {
  transform: scale(1.025);
}

.microscope-software-content {
  padding: 22px 10px 0;
  text-align: center;
}

.microscope-software-title {
  margin: 0 0 19px;
  font-size: 22px;
  line-height: 1.3;
  /* font-weight: 600; */
  color: #0d178f;
}

.microscope-software-download {
  min-width: 146px;
  min-height: 40px;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111cac;
  border-radius: 4px;
  background: #111cac;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.microscope-software-download:hover {
  background: #ffffff;
  color: #111cac;
  transform: translateY(-2px);
}

@media (max-width: 1500px) {
  .microscope-software-heading {
    font-size: 39px;
  }

  .microscope-software-row {
    gap: 20px;
  }

  /* .microscope-software-image {
    height: 240px;
  } */

  .microscope-software-title {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .microscope-software-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* .microscope-software-image {
    height: 310px;
  } */
}

@media (max-width: 991px) {
  .microscope-software {
    padding: 35px 18px 45px;
  }

  .microscope-software-heading {
    margin-left: 0;
    font-size: 35px;
  }

  /* .microscope-software-image {
    height: 260px;
  } */

  .microscope-software-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .microscope-software-heading {
    margin-bottom: 25px;
    font-size: 31px;
  }

  .microscope-software-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 22px;
  }

  .microscope-software-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .microscope-software-image {
    height: auto;
    aspect-ratio: 1.5 / 1;
  }
}

@media (max-width: 575px) {
  .microscope-software {
    padding: 28px 12px 38px;
  }

  .microscope-software-heading {
    font-size: 27px;
    line-height: 1.3;
  }

  .microscope-software-card {
    padding: 10px 10px 12px;
  }

  .microscope-software-content {
    padding: 18px 5px 0;
  }

  .microscope-software-title {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .microscope-software-download {
    min-width: 138px;
    min-height: 48px;
    padding: 11px 22px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .microscope-software-heading {
    font-size: 24px;
  }

  .microscope-software-title {
    font-size: 21px;
  }
}
/* ============================== pdf section end  */

/* ========================================= offer start  */
.microscope-deal {
  position: relative;
  width: 100%;
  min-height: 742px;
  overflow: hidden;
  background: #eeeeee82;
  margin-bottom: 70px !important;
}

.microscope-deal-container {
  position: relative;
  width: 86%;
  max-width: 1560px;
  min-height: 742px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.microscope-deal-content {
  position: relative;
  z-index: 5;
  width: 50%;
  padding: 26px 0 70px;
}

.microscope-deal-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 149px;
  min-height: 41px;
  padding: 8px 23px;
  margin-bottom: 25px;
  border: 1.5px solid #111111;
  border-radius: 50px;
  background: transparent;
  color: #050505;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.microscope-deal-title {
  max-width: 670px;
  margin: 0;
  color: #050505;
  font-size: 42px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.microscope-deal-title span {
  display: block;
}

.microscope-deal-description {
  margin-top: 34px;
  color: #333333;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.microscope-deal-timer {
  display: flex;
  align-items: flex-start;
  gap: 27px;
  margin-top: 42px;
}

.microscope-deal-time-item {
  min-width: 54px;
  text-align: center;
}

.microscope-deal-time-number {
  width: 54px;
  height: 54px;
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
}

.microscope-deal-time-label {
  display: block;
  color: #171717;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
}

.microscope-deal-visual {
  position: relative;
  width: 50%;
  min-height: 742px;
}

.microscope-deal-product {
  position: absolute;
  z-index: 4;
  top: 116px;
  right: 28px;
  width: 470px;
  max-width: 72%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.07));
}

.microscope-deal-ring {
  position: absolute;
  z-index: 1;
  right: -28px;
  bottom: 13px;
  width: 350px;
  height: 350px;
  border: 43px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.microscope-deal-pink-glow {
  position: absolute;
  z-index: 0;
  left: 12%;
  bottom: 108px;
  width: 230px;
  height: 175px;
  border-radius: 50%;
  background: rgba(255, 116, 200, 0.33);
  filter: blur(48px);
}

.microscope-deal-dot-shape {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 102px;
  width: 82px;
  height: 76px;
  display: grid;
  grid-template-columns: repeat(5, 7px);
  grid-auto-rows: 7px;
  justify-content: center;
  align-content: center;
  gap: 8px;
  transform: rotate(45deg);
}

.microscope-deal-dot-shape span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f51f27;
}

.microscope-deal-dot-shape span:nth-child(1),
.microscope-deal-dot-shape span:nth-child(5),
.microscope-deal-dot-shape span:nth-child(21),
.microscope-deal-dot-shape span:nth-child(25) {
  opacity: 0;
}

.microscope-deal-badge {
  position: absolute;
  z-index: 6;
  left: 5%;
  bottom: 82px;
  width: 102px;
  height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: #ff171f;
  clip-path: polygon(
    50% 0%,
    59% 8%,
    70% 4%,
    76% 15%,
    89% 14%,
    90% 27%,
    100% 33%,
    94% 44%,
    100% 55%,
    90% 63%,
    89% 76%,
    76% 76%,
    70% 89%,
    58% 84%,
    50% 100%,
    40% 85%,
    27% 90%,
    22% 77%,
    9% 76%,
    10% 63%,
    0% 56%,
    6% 44%,
    0% 33%,
    10% 27%,
    10% 14%,
    23% 15%,
    29% 4%,
    41% 8%
  );
  transform: rotate(-4deg);
}

.microscope-deal-badge strong {
  display: block;
  font-size: 29px;
  line-height: 1;
  font-weight: 700;
}

.microscope-deal-badge span {
  display: block;
  margin-top: 7px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 1399px) {
  .microscope-deal-container {
    width: 90%;
  }

  .microscope-deal-title {
    font-size: 38px;
  }

  .microscope-deal-product {
    right: 5px;
    width: 430px;
  }

  .microscope-deal-ring {
    width: 315px;
    height: 315px;
  }
}

@media (max-width: 1199px) {
  .microscope-deal,
  .microscope-deal-container {
    min-height: 650px;
  }

  .microscope-deal-content {
    width: 52%;
  }

  .microscope-deal-visual {
    width: 48%;
    min-height: 650px;
  }

  .microscope-deal-title {
    font-size: 35px;
  }

  .microscope-deal-description {
    font-size: 18px;
  }

  .microscope-deal-product {
    top: 135px;
    width: 390px;
    max-width: 86%;
  }

  .microscope-deal-ring {
    right: -45px;
    width: 290px;
    height: 290px;
    border-width: 37px;
  }

  .microscope-deal-badge {
    left: 0;
    bottom: 78px;
  }
}

@media (max-width: 991px) {
  .microscope-deal {
    min-height: auto;
  }

  .microscope-deal-container {
    width: 92%;
    min-height: auto;
    display: block;
    padding: 55px 0 40px;
  }

  .microscope-deal-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .microscope-deal-label {
    margin-bottom: 22px;
  }

  .microscope-deal-title {
    max-width: 100%;
    font-size: 36px;
  }

  .microscope-deal-description {
    margin-top: 25px;
  }

  .microscope-deal-timer {
    justify-content: center;
    margin-top: 34px;
  }

  .microscope-deal-visual {
    width: 100%;
    min-height: 490px;
    margin-top: 25px;
  }

  .microscope-deal-product {
    top: 20px;
    right: 50%;
    width: 430px;
    max-width: 72%;
    transform: translateX(50%);
  }

  .microscope-deal-ring {
    right: 50%;
    bottom: 5px;
    width: 290px;
    height: 290px;
    transform: translateX(72%);
  }

  .microscope-deal-dot-shape {
    top: 0;
    right: 12%;
  }

  .microscope-deal-pink-glow {
    left: 26%;
    bottom: 78px;
  }

  .microscope-deal-badge {
    left: 18%;
    bottom: 55px;
  }
}

@media (max-width: 767px) {
  .microscope-deal-container {
    padding-top: 42px;
  }

  .microscope-deal-title {
    font-size: 31px;
    line-height: 1.3;
  }

  .microscope-deal-description {
    font-size: 17px;
  }

  .microscope-deal-timer {
    gap: 18px;
  }

  .microscope-deal-visual {
    min-height: 430px;
  }

  .microscope-deal-product {
    width: 390px;
    max-width: 83%;
  }

  .microscope-deal-ring {
    width: 250px;
    height: 250px;
    border-width: 32px;
  }

  .microscope-deal-badge {
    left: 8%;
    bottom: 45px;
    width: 92px;
    height: 92px;
  }

  .microscope-deal-badge strong {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .microscope-deal-container {
    width: 94%;
    padding: 30px 0 28px;
  }

  .microscope-deal-label {
    min-width: 135px;
    min-height: 38px;
    margin-bottom: 19px;
    padding: 7px 18px;
    font-size: 14px;
  }

  .microscope-deal-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .microscope-deal-description {
    margin-top: 19px;
    padding: 0 10px;
    font-size: 15px;
  }

  .microscope-deal-timer {
    gap: 10px;
    margin-top: 28px;
  }

  .microscope-deal-time-item {
    min-width: 60px;
  }

  .microscope-deal-time-number {
    width: 49px;
    height: 49px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .microscope-deal-time-label {
    font-size: 14px;
  }

  .microscope-deal-visual {
    min-height: 355px;
    margin-top: 15px;
  }

  .microscope-deal-product {
    top: 28px;
    width: 315px;
    max-width: 91%;
  }

  .microscope-deal-ring {
    right: 48%;
    bottom: 0;
    width: 205px;
    height: 205px;
    border-width: 27px;
  }

  .microscope-deal-dot-shape {
    top: 5px;
    right: 5%;
    transform: rotate(45deg) scale(0.8);
  }

  .microscope-deal-pink-glow {
    left: 9%;
    bottom: 62px;
    width: 180px;
    height: 120px;
  }

  .microscope-deal-badge {
    left: 3%;
    bottom: 30px;
    width: 78px;
    height: 78px;
  }

  .microscope-deal-badge strong {
    font-size: 21px;
  }

  .microscope-deal-badge span {
    margin-top: 4px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .microscope-deal-title {
    font-size: 23px;
  }

  .microscope-deal-timer {
    gap: 5px;
  }

  .microscope-deal-time-item {
    min-width: 57px;
  }

  .microscope-deal-visual {
    min-height: 320px;
  }

  .microscope-deal-product {
    width: 280px;
  }

  .microscope-deal-ring {
    width: 180px;
    height: 180px;
    border-width: 24px;
  }
}
/* ========================================= offer end  */

/* ================================== slider icon start  */
.microscope-brand-marquee {
  width: 100%;
  padding: 42px 0;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px dotted #dddddd;
  border-bottom: 1px dotted #dddddd;
}

.microscope-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: microscopeBrandSlide 22s linear infinite;
  will-change: transform;
}

.microscope-brand-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.microscope-brand-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 85px;
  white-space: nowrap;
}

.microscope-brand-quality {
  color: #233eb4;
  font-size: 70px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -2px;
}

.microscope-brand-image {
  width: 100px;
  height: 100px;
  margin: 0 95px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f7f7f7;
}

.microscope-brand-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.microscope-brand-design {
  display: flex;
  align-items: center;
  font-size: 68px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -2px;
}

.microscope-brand-design-solid {
  color: #dddddd;
}

.microscope-brand-design-outline {
  margin-left: 14px;
  color: #ffffff;
  font-weight: 300;
  -webkit-text-stroke: 1px #d1d1d1;
  text-stroke: 1px #d1d1d1;
}

@keyframes microscopeBrandSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199px) {
  .microscope-brand-marquee {
    padding: 35px 0;
  }

  .microscope-brand-item {
    margin-right: 65px;
  }

  .microscope-brand-quality,
  .microscope-brand-design {
    font-size: 56px;
  }

  .microscope-brand-image {
    width: 85px;
    height: 85px;
    margin: 0 65px;
  }
}

@media (max-width: 767px) {
  .microscope-brand-marquee {
    padding: 28px 0;
  }

  .microscope-brand-track {
    animation-duration: 16s;
  }

  .microscope-brand-item {
    margin-right: 40px;
  }

  .microscope-brand-quality,
  .microscope-brand-design {
    font-size: 41px;
    letter-spacing: -1px;
  }

  .microscope-brand-image {
    width: 68px;
    height: 68px;
    margin: 0 40px;
  }

  .microscope-brand-design-outline {
    margin-left: 8px;
  }
}

@media (max-width: 480px) {
  .microscope-brand-marquee {
    padding: 22px 0;
  }

  .microscope-brand-track {
    animation-duration: 13s;
  }

  .microscope-brand-item {
    margin-right: 30px;
  }

  .microscope-brand-quality,
  .microscope-brand-design {
    font-size: 32px;
  }

  .microscope-brand-image {
    width: 55px;
    height: 55px;
    margin: 0 30px;
  }
}
/* ================================== slider icon end  */

/* ==================================== about section start  */
.new-microscope-about-section {
  width: 100%;
  /* padding: 35px 0; */
  border-top: 1px dotted #dddddd;
  background: #ffffff;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}

.new-microscope-about-section .container {
  max-width: 1840px;
}

.new-microscope-about-card,
.new-microscope-about-client-card,
.new-microscope-about-team-card {
  position: relative;
  width: 100%;
  background: #fafafa;
  border-radius: 15px;
  overflow: hidden;
}

.new-microscope-about-card {
  min-height: 588px;
  padding: 12px 14px 0;
}

.new-microscope-about-inner {
  position: relative;
  z-index: 3;
  padding: 0;
}

.new-microscope-about-title {
  margin: 0;
  color: #112d99;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 700;
}

.new-microscope-about-description {
  max-width: 815px;
  margin-top: 24px;
  color: #353535;
  font-size: 18px;
  line-height: 2.2;
  font-weight: 400;
}

.new-microscope-about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.new-microscope-about-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #545860;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.new-microscope-about-list-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #102495;
  color: #ffffff;
  font-size: 10px;
}

.new-microscope-about-button {
  min-width: 235px;
  min-height: 49px;
  margin-top: 26px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 2px solid #293fb4;
  border-radius: 4px;
  background: #293fb4;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.new-microscope-about-button:hover {
  background: transparent;
  color: #293fb4;
  transform: translateY(-2px);
}

.new-microscope-about-button i {
  font-size: 18px;
}

.new-microscope-about-building {
  position: absolute;
  z-index: 1;
  right: 65px;
  bottom: 0;
  width: 530px;
  max-width: 58%;
  height: auto;
  display: block;
  object-fit: contain;
}

.new-microscope-about-right-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.new-microscope-about-client-card {
  min-height: 219px;
  padding: 18px 25px 24px;
}

.new-microscope-about-client-title {
  font-size: 35px;
}

.new-microscope-about-client-logos {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 21px 52px;
}

.new-microscope-about-client-logo {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-microscope-about-client-logo img {
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.new-microscope-about-team-card {
  min-height: 330px;
  flex: 1;
  padding: 18px 25px 0;
}

.new-microscope-about-team-title {
  font-size: 35px;
}

.new-microscope-about-team-description {
  position: relative;
  z-index: 4;
  max-width: 780px;
  margin-top: 24px;
  color: #292929;
  font-size: 18px;
  line-height: 2.2;
  font-weight: 400;
}

.new-microscope-about-team-stats {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin-top: 42px;
}

.new-microscope-about-team-stat {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.new-microscope-about-team-stat-icon {
  min-width: 43px;
  color: #10178c;
  font-size: 41px;
  line-height: 1;
}

.new-microscope-about-team-stat-info {
  padding-top: 1px;
}

.new-microscope-about-team-stat-number {
  display: block;
  color: #11178d;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.new-microscope-about-team-stat-label {
  display: block;
  margin-top: 13px;
  color: #444444;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
}

.new-microscope-about-team-image {
  position: absolute;
  z-index: 2;
  right: 37px;
  bottom: 0;
  width: 338px;
  max-width: 43%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 1599px) {
  .new-microscope-about-section .container {
    max-width: 1500px;
  }

  .new-microscope-about-title,
  .new-microscope-about-client-title,
  .new-microscope-about-team-title {
    font-size: 28px;
  }

  .new-microscope-about-description,
  .new-microscope-about-team-description {
    font-size: 16px;
  }

  .new-microscope-about-building {
    right: 30px;
    width: 455px;
  }

  .new-microscope-about-team-image {
    right: 20px;
    width: 305px;
  }

  .new-microscope-about-team-stats {
    gap: 45px;
  }

  .new-microscope-about-client-logos {
    gap: 20px 30px;
  }
}

@media (max-width: 1399px) {
  .new-microscope-about-card {
    min-height: 570px;
  }

  .new-microscope-about-description {
    max-width: 700px;
    line-height: 2;
  }

  .new-microscope-about-building {
    width: 420px;
    max-width: 55%;
  }

  .new-microscope-about-team-description {
    max-width: 620px;
    line-height: 1.9;
  }

  .new-microscope-about-team-stats {
    gap: 30px;
  }

  .new-microscope-about-team-stat-label {
    white-space: normal;
  }

  .new-microscope-about-team-image {
    width: 290px;
  }
}

@media (max-width: 1199px) {
  .new-microscope-about-section {
    padding: 30px 0;
  }

  .new-microscope-about-card {
    min-height: 520px;
  }

  .new-microscope-about-title,
  .new-microscope-about-client-title,
  .new-microscope-about-team-title {
    font-size: 29px;
  }

  .new-microscope-about-description {
    max-width: 100%;
    padding-right: 0;
    font-size: 15px;
    line-height: 1.9;
  }

  .new-microscope-about-list li {
    font-size: 14px;
  }

  .new-microscope-about-building {
    right: 0;
    width: 360px;
    max-width: 49%;
  }

  .new-microscope-about-team-card {
    min-height: 360px;
  }

  .new-microscope-about-team-description {
    max-width: 100%;
    padding-right: 265px;
    font-size: 15px;
  }

  .new-microscope-about-team-stats {
    gap: 25px;
    margin-top: 30px;
  }

  .new-microscope-about-team-stat-icon {
    min-width: 36px;
    font-size: 34px;
  }

  .new-microscope-about-team-stat-number {
    font-size: 20px;
  }

  .new-microscope-about-team-image {
    width: 260px;
    max-width: 38%;
  }

  .new-microscope-about-client-logo img {
    max-width: 120px;
    max-height: 36px;
  }
}

@media (max-width: 991px) {
  .new-microscope-about-section {
    padding: 25px 0;
  }

  .new-microscope-about-card {
    min-height: 560px;
    padding: 22px 22px 0;
  }

  .new-microscope-about-right-column {
    margin-top: 20px;
  }

  .new-microscope-about-client-card {
    min-height: auto;
    padding: 24px;
  }

  .new-microscope-about-team-card {
    min-height: 390px;
    padding: 24px 24px 0;
  }

  .new-microscope-about-client-logos {
    margin-top: 28px;
  }

  .new-microscope-about-building {
    right: 25px;
    width: 420px;
    max-width: 55%;
  }

  .new-microscope-about-team-description {
    padding-right: 300px;
  }

  .new-microscope-about-team-image {
    width: 310px;
    max-width: 42%;
  }
}

@media (max-width: 767px) {
  .new-microscope-about-card {
    min-height: auto;
    padding: 24px 20px 0;
  }

  .new-microscope-about-title,
  .new-microscope-about-client-title,
  .new-microscope-about-team-title {
    font-size: 27px;
  }

  .new-microscope-about-description,
  .new-microscope-about-team-description {
    margin-top: 18px;
    padding-right: 0;
    font-size: 15px;
    line-height: 1.8;
  }

  .new-microscope-about-button {
    min-width: 245px;
    min-height: 55px;
    font-size: 15px;
  }

  .new-microscope-about-building {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 500px;
    margin: 25px auto 0;
  }

  .new-microscope-about-client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .new-microscope-about-client-logo {
    height: 45px;
  }

  .new-microscope-about-team-card {
    min-height: auto;
    padding-bottom: 0;
  }

  .new-microscope-about-team-stats {
    /* flex-direction: column; */
    gap: 24px;
    margin-top: 28px;
  }

  .new-microscope-about-team-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 25px auto 0;
  }
}

@media (max-width: 575px) {
  .new-microscope-about-section {
    padding: 18px 0;
  }

  .new-microscope-about-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .new-microscope-about-card,
  .new-microscope-about-client-card,
  .new-microscope-about-team-card {
    border-radius: 12px;
  }

  .new-microscope-about-card {
    padding: 20px 16px 0;
  }

  .new-microscope-about-client-card,
  .new-microscope-about-team-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .new-microscope-about-title,
  .new-microscope-about-client-title,
  .new-microscope-about-team-title {
    font-size: 24px;
  }

  .new-microscope-about-description,
  .new-microscope-about-team-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .new-microscope-about-list {
    gap: 11px;
    margin-top: 20px;
  }

  .new-microscope-about-list li {
    align-items: flex-start;
    font-size: 13px;
  }

  .new-microscope-about-list-icon {
    margin-top: 1px;
  }

  .new-microscope-about-button {
    width: 100%;
    min-width: auto;
    min-height: 52px;
    margin-top: 22px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .new-microscope-about-client-logos {
    margin-top: 25px;
    gap: 24px 15px;
  }

  .new-microscope-about-client-logo img {
    max-width: 115px;
    max-height: 36px;
  }

  .new-microscope-about-team-stat-icon {
    min-width: 35px;
    font-size: 34px;
  }

  .new-microscope-about-team-stat-number {
    font-size: 20px;
  }

  .new-microscope-about-team-stat-label {
    margin-top: 8px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .new-microscope-about-client-logos {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .new-microscope-about-client-logo img {
    max-width: 145px;
  }
}
/* ==================================== about section end  */

/* ========================================= testimunials section start  */
.client-testimonial-section {
  width: 100%;
  padding: 20px 0 42px;
  background: #ffffff;
  overflow: hidden;
}

.client-testimonial-section .container-fluid {
  max-width: 1700px;
  padding-left: 14px;
  padding-right: 14px;
}

.client-testimonial-heading {
  margin: 0 0 30px;
  color: #17179a;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 600;
}

.client-testimonial-card {
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 18px 19px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.client-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.client-testimonial-user {
  display: flex;
  align-items: center;
  gap: 17px;
}

.client-testimonial-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #f2f2f2;
}

.client-testimonial-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.client-testimonial-name {
  margin: 0;
  color: #111111;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.client-testimonial-date {
  display: block;
  margin-top: 5px;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.client-testimonial-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 20px;
  color: #ffb800;
  font-size: 19px;
  line-height: 1;
}

.client-testimonial-text {
  margin: 8px 0 0;
  color: #222222;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.client-testimonial-read-more {
  display: inline-block;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #8d8d8d;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.client-testimonial-read-more:hover {
  color: #17179a;
}

.client-testimonial-card.is-open .client-testimonial-text {
  display: block;
  overflow: visible;
}

@media (max-width: 1399px) {
  .client-testimonial-heading {
    font-size: 32px;
  }

  .client-testimonial-card {
    min-height: 285px;
  }

  .client-testimonial-name {
    font-size: 18px;
  }

  .client-testimonial-text {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .client-testimonial-section {
    padding: 30px 0 40px;
  }

  .client-testimonial-heading {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .client-testimonial-card {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .client-testimonial-section .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  .client-testimonial-heading {
    font-size: 27px;
  }

  .client-testimonial-card {
    min-height: auto;
    padding: 17px 16px 16px;
  }

  .client-testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .client-testimonial-name {
    font-size: 18px;
  }

  .client-testimonial-rating {
    margin-top: 18px;
    font-size: 18px;
  }

  .client-testimonial-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .client-testimonial-section {
    padding: 25px 0 35px;
  }

  .client-testimonial-heading {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .client-testimonial-user {
    gap: 13px;
  }

  .client-testimonial-avatar {
    width: 46px;
    height: 46px;
  }

  .client-testimonial-name {
    font-size: 17px;
  }

  .client-testimonial-date {
    font-size: 13px;
  }

  .client-testimonial-rating {
    font-size: 17px;
  }

  .client-testimonial-text {
    font-size: 14px;
  }

  .client-testimonial-read-more {
    font-size: 14px;
  }
}
/* ========================================= testimunials section end  */
.exact-microscope-footer {
  position: relative;
  width: 100%;
  /* min-height: 770px; */
  padding: 78px 0 20px;
  overflow: hidden;
  background: #f6f7f8;
}

.exact-microscope-footer .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1570px;
}

/* Main columns */

.exact-microscope-footer-main {
  min-height: 495px;
}

.exact-microscope-footer-company {
  padding-right: 35px;
}

/* Logo */

.exact-microscope-footer-logo {
  display: inline-block;
  width: 305px;
  max-width: 100%;
  /* margin-bottom: 31px; */
}

.exact-microscope-footer-logo img {
  display: block;
  width: 65%;
  height: auto;
  object-fit: contain;
}

/* Company description */

.exact-microscope-footer-description {
  max-width: 525px;
  margin: 0;
  color: #181818;
  font-size: 17px;
  line-height: 2.12;
  font-weight: 400;
}

/* Contact information */

.exact-microscope-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 39px;
  margin-top: 30px;
}

.exact-microscope-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.exact-microscope-footer-contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 19px;
}

.exact-microscope-footer-contact-content {
  max-width: 475px;
  padding-top: 4px;
}

.exact-microscope-footer-contact-content a,
.exact-microscope-footer-contact-content p {
  margin: 0;
  color: #181818;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.exact-microscope-footer-contact-content a:hover {
  color: #233daf;
}

/* Footer column titles */

.exact-microscope-footer-heading {
  margin: 0 0 31px;
  color: #080808;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 600;
}

/* Footer links */

.exact-microscope-footer-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exact-microscope-footer-links li {
  margin: 0;
  padding: 0;
}

.exact-microscope-footer-links a {
  position: relative;
  display: inline-block;
  color: #151515;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.exact-microscope-footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #233daf;
  transition: width 0.3s ease;
}

.exact-microscope-footer-links a:hover {
  color: #233daf;
  transform: translateX(4px);
}

.exact-microscope-footer-links a:hover::before {
  width: 100%;
}

/* Footer bottom */

.exact-microscope-footer-bottom {
  padding-top: 25px;
  border-top: 1px solid #d7d7d7;
  margin-top: 16px;
}

.exact-microscope-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.exact-microscope-footer-copyright {
  margin: 0;
  color: #161616;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

/* Email pill */

.exact-microscope-footer-email {
  min-width: 298px;
  min-height: 57px;
  padding: 12px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #ff1e2b;
  border-radius: 50px;
  background: transparent;
  color: #303030;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.exact-microscope-footer-email i {
  color: #ff1e2b;
  font-size: 17px;
  transition: color 0.3s ease;
}

.exact-microscope-footer-email:hover {
  background: #ff1e2b;
  color: #ffffff;
  transform: translateY(-2px);
}

.exact-microscope-footer-email:hover i {
  color: #ffffff;
}

/* Left decorative leaf */

.exact-microscope-footer-leaf {
  position: absolute;
  z-index: 1;
  top: 145px;
  left: -69px;
  width: 245px;
  height: 170px;
  pointer-events: none;
  opacity: 0.48;
}

.exact-microscope-footer-leaf span {
  position: absolute;
  left: 0;
  width: 205px;
  height: 75px;
  border-top: 2px solid #8c8c8c;
  border-radius: 50%;
  transform-origin: left center;
}

.exact-microscope-footer-leaf span:nth-child(1) {
  top: 0;
  transform: rotate(7deg);
}

.exact-microscope-footer-leaf span:nth-child(2) {
  top: 17px;
  transform: rotate(17deg);
}

.exact-microscope-footer-leaf span:nth-child(3) {
  top: 35px;
  transform: rotate(28deg);
}

.exact-microscope-footer-leaf span:nth-child(4) {
  top: 54px;
  transform: rotate(39deg);
}

.exact-microscope-footer-leaf span:nth-child(5) {
  top: 73px;
  transform: rotate(50deg);
}

.exact-microscope-footer-leaf span:nth-child(6) {
  top: 92px;
  transform: rotate(61deg);
}

/* Right decorative star */

.exact-microscope-footer-star {
  position: absolute;
  z-index: 1;
  top: 193px;
  right: 95px;
  color: #e8e8e8;
  font-size: 28px;
  line-height: 1;
  transform: rotate(45deg);
  pointer-events: none;
}

/* Large desktop */

@media (max-width: 1599px) {
  .exact-microscope-footer .container {
    max-width: 1380px;
  }

  .exact-microscope-footer-description {
    font-size: 16px;
  }

  .exact-microscope-footer-contact-content a,
  .exact-microscope-footer-contact-content p,
  .exact-microscope-footer-links a {
    font-size: 15px;
  }
}

/* Laptop */

@media (max-width: 1399px) {
  .exact-microscope-footer {
    min-height: auto;
    padding-top: 65px;
  }

  .exact-microscope-footer-logo {
    width: 270px;
  }

  .exact-microscope-footer-heading {
    font-size: 23px;
  }

  .exact-microscope-footer-main {
    min-height: 510px;
  }

  .exact-microscope-footer-links {
    gap: 21px;
  }
}

@media (max-width: 1199px) {
  .exact-microscope-footer {
    padding-top: 55px;
  }

  .exact-microscope-footer-main {
    min-height: auto;
  }

  .exact-microscope-footer-company {
    padding-right: 0;
  }

  .exact-microscope-footer-description {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.95;
  }

  .exact-microscope-footer-contact-list {
    gap: 26px;
  }

  .exact-microscope-footer-heading {
    margin-bottom: 24px;
  }

  .exact-microscope-footer-links {
    gap: 18px;
  }

  .exact-microscope-footer-bottom {
    margin-top: 25px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .exact-microscope-footer {
    padding: 50px 0 22px;
  }

  .exact-microscope-footer-logo {
    margin-bottom: 24px;
  }

  .exact-microscope-footer-contact-list {
    margin-bottom: 10px;
  }

  .exact-microscope-footer-star {
    display: none;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .exact-microscope-footer {
    padding-top: 42px;
  }

  .exact-microscope-footer-logo {
    width: 250px;
  }

  .exact-microscope-footer-description {
    font-size: 14px;
    line-height: 1.9;
  }

  .exact-microscope-footer-heading {
    font-size: 22px;
  }

  .exact-microscope-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .exact-microscope-footer-copyright {
    font-size: 15px;
  }

  .exact-microscope-footer-email {
    width: 100%;
    min-width: 0;
    max-width: 335px;
  }

  .exact-microscope-footer-leaf {
    opacity: 0.2;
  }
}

@media (max-width: 575px) {
  .exact-microscope-footer {
    padding: 36px 0 18px;
  }

  .exact-microscope-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exact-microscope-footer-logo {
    width: 225px;
    margin-bottom: 20px;
  }

  .exact-microscope-footer-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .exact-microscope-footer-contact-list {
    gap: 21px;
    margin-top: 25px;
  }

  .exact-microscope-footer-contact {
    gap: 13px;
  }

  .exact-microscope-footer-contact-icon {
    width: 41px;
    height: 41px;
    min-width: 41px;
    font-size: 16px;
  }

  .exact-microscope-footer-contact-content {
    padding-top: 1px;
  }

  .exact-microscope-footer-contact-content a,
  .exact-microscope-footer-contact-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .exact-microscope-footer-heading {
    margin-bottom: 19px;
    font-size: 20px;
  }

  .exact-microscope-footer-links {
    gap: 15px;
  }

  .exact-microscope-footer-links a {
    font-size: 14px;
  }

  .exact-microscope-footer-bottom {
    padding-top: 20px;
  }

  .exact-microscope-footer-copyright {
    font-size: 14px;
  }

  .exact-microscope-footer-email {
    max-width: 100%;
    min-height: 53px;
    padding: 11px 18px;
    gap: 12px;
    font-size: 13px;
  }

  .exact-microscope-footer-leaf {
    display: none;
  }
}

/* ========================= breadcrum section start  */
.microscope-inner-banner {
  position: relative;
  width: 100%;
  min-height: 415px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #eff0f3a8;
}

.microscope-inner-banner-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 15px;
}

.microscope-inner-banner-content {
  width: 100%;
  text-align: center;
}

.microscope-inner-banner-title {
  margin: 0;
  color: #050505;
  font-size: 44px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -1.2px;
}

.microscope-inner-banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 29px;
  padding: 0;
  list-style: none;
}

.microscope-inner-banner-breadcrumb li {
  display: flex;
  align-items: center;
  color: #111111;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
}

.microscope-inner-banner-breadcrumb a {
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.microscope-inner-banner-breadcrumb a:hover {
  color: #1a2f9c;
}

.microscope-inner-banner-breadcrumb-separator {
  color: #111111;
  font-size: 15px;
  line-height: 1;
}

@media (max-width: 1199px) {
  .microscope-inner-banner {
    min-height: 370px;
  }

  .microscope-inner-banner-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .microscope-inner-banner {
    min-height: 330px;
  }

  .microscope-inner-banner-title {
    font-size: 36px;
  }

  .microscope-inner-banner-breadcrumb {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .microscope-inner-banner {
    min-height: 290px;
  }

  .microscope-inner-banner-title {
    font-size: 31px;
    letter-spacing: -0.7px;
  }

  .microscope-inner-banner-breadcrumb {
    gap: 17px;
    margin-top: 21px;
  }

  .microscope-inner-banner-breadcrumb li {
    font-size: 15px;
  }

  .microscope-inner-banner-breadcrumb-separator {
    font-size: 13px;
  }

  .microscope-inner-banner-content {
    width: 100%;
    text-align: center;
    padding-top: 85px;
  }
}

@media (max-width: 575px) {
  .microscope-inner-banner {
    min-height: 250px;
  }

  .microscope-inner-banner-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .microscope-inner-banner-title {
    font-size: 27px;
    line-height: 1.3;
  }

  .microscope-inner-banner-breadcrumb {
    gap: 14px;
    margin-top: 18px;
  }

  .microscope-inner-banner-breadcrumb li {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .microscope-inner-banner {
    min-height: 225px;
  }

  .microscope-inner-banner-title {
    font-size: 24px;
  }

  .microscope-inner-banner-breadcrumb {
    gap: 11px;
  }

  .microscope-inner-banner-breadcrumb li {
    font-size: 13px;
  }
}
/* ========================= breadcrum section end  */

/* ============================== about us page start  */
.microscope-industries-section {
  width: 100%;
  padding: 70px 0 45px;
  background: #ffffff;
}

.microscope-industries-section .container {
  max-width: 1120px;
}

.microscope-industries-heading {
  margin: 0 0 25px;
  color: #101b99;
  font-size: 29px;
  line-height: 1.3;
  font-weight: 600;
}

.microscope-industries-card {
  width: 100%;
  min-height: 130px;
  padding: 10px 15px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
  background: #ffffff;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.microscope-industries-card:hover {
  transform: translateY(-5px);
  border-color: #bfc7ef;
  box-shadow: 0 10px 24px rgba(16, 27, 153, 0.09);
}

.microscope-industries-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.microscope-industries-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.microscope-industries-card:hover .microscope-industries-icon img {
  transform: scale(1.06);
}

.microscope-industries-title {
  margin: 0;
  color: #101010;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .microscope-industries-section .container {
    max-width: 1040px;
  }

  .microscope-industries-card {
    min-height: 128px;
  }

  .microscope-industries-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 991px) {
  .microscope-industries-section {
    padding: 25px 0 40px;
  }

  .microscope-industries-heading {
    font-size: 27px;
  }

  .microscope-industries-card {
    min-height: 140px;
  }
}

@media (max-width: 767px) {
  .microscope-industries-heading {
    margin-bottom: 22px;
    font-size: 25px;
  }

  .microscope-industries-card {
    min-height: 135px;
    padding: 12px;
  }

  .microscope-industries-title {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .microscope-industries-section {
    padding: 22px 0 32px;
  }

  .microscope-industries-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .microscope-industries-heading {
    font-size: 23px;
  }

  .microscope-industries-card {
    min-height: 128px;
    padding: 10px 8px;
  }

  .microscope-industries-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 7px;
  }

  .microscope-industries-title {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  .microscope-industries-heading {
    font-size: 21px;
  }

  .microscope-industries-card {
    min-height: 124px;
  }

  .microscope-industries-icon {
    width: 58px;
    height: 58px;
  }

  .microscope-industries-title {
    font-size: 13px;
  }
}
/* ============================== about us page end  */

/* ================================= Appliction start ========  */
.microscope-application-section {
  position: relative;
  width: 100%;
  padding: 75px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 15%, rgba(24, 48, 156, 0.07), transparent 28%),
    radial-gradient(
      circle at 95% 85%,
      rgba(0, 166, 225, 0.07),
      transparent 30%
    ),
    #ffffff;
}

.microscope-application-section .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.microscope-application-heading-wrap {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.microscope-application-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #18339b;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.microscope-application-subtitle::before,
.microscope-application-subtitle::after {
  content: "";
  width: 34px;
  height: 2px;
  background: #18339b;
}

.microscope-application-heading {
  margin: 0;
  color: #101b85;
  /* font-size: 39px; */
  line-height: 1.3;
  font-weight: 700;
}

.microscope-application-heading-description {
  max-width: 650px;
  margin: 14px auto 0;
  color: #707784;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.microscope-application-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 245px;
  padding: 31px 27px 26px;
  overflow: hidden;
  border: 1px solid #e5e8f0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(15, 31, 91, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.microscope-application-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #122c9b, #21a7db);
  transition: width 0.35s ease;
}

.microscope-application-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(23, 53, 160, 0.055);
  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

.microscope-application-card:hover {
  transform: translateY(-8px);
  border-color: #cbd4f1;
  box-shadow: 0 18px 45px rgba(15, 31, 91, 0.14);
}

.microscope-application-card:hover::before {
  width: 7px;
}

.microscope-application-card:hover::after {
  transform: scale(1.35);
  background: rgba(23, 53, 160, 0.08);
}

.microscope-application-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #142e9d, #2772cd);
  color: #ffffff;
  font-size: 25px;
  box-shadow: 0 10px 22px rgba(20, 46, 157, 0.22);
  transition:
    transform 0.35s ease,
    border-radius 0.35s ease;
}

.microscope-application-card:hover .microscope-application-icon {
  transform: translateY(-4px) rotate(-4deg);
  border-radius: 50%;
}

.microscope-application-title {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  color: #111d77;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

.microscope-application-description {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #747b88;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

.microscope-application-number {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 20px;
  color: rgba(20, 46, 157, 0.08);
  font-size: 55px;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .microscope-application-section {
    padding: 65px 0;
  }

  .microscope-application-heading {
    font-size: 35px;
  }

  .microscope-application-card {
    min-height: 255px;
  }
}

@media (max-width: 991px) {
  .microscope-application-section {
    padding: 55px 0;
  }

  .microscope-application-heading-wrap {
    margin-bottom: 38px;
  }

  .microscope-application-heading {
    font-size: 32px;
  }

  .microscope-application-card {
    min-height: 235px;
  }
}

@media (max-width: 767px) {
  .microscope-application-section {
    padding: 45px 0;
  }

  .microscope-application-heading {
    font-size: 28px;
  }

  .microscope-application-heading-description {
    font-size: 15px;
  }

  .microscope-application-card {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .microscope-application-section {
    padding: 38px 0;
  }

  .microscope-application-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .microscope-application-heading-wrap {
    margin-bottom: 30px;
  }

  .microscope-application-subtitle {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .microscope-application-subtitle::before,
  .microscope-application-subtitle::after {
    width: 24px;
  }

  .microscope-application-heading {
    font-size: 25px;
  }

  .microscope-application-heading-description {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.7;
  }

  .microscope-application-card {
    padding: 25px 21px 22px;
    border-radius: 13px;
  }

  .microscope-application-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .microscope-application-title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .microscope-application-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .microscope-application-number {
    top: 13px;
    right: 16px;
    font-size: 46px;
  }
}
/* ================================= Appliction end ========  */

/* ====================================== contact us start ============  */
.new-microscope-contact {
  position: relative;
  width: 100%;
  padding: 75px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(24, 49, 156, 0.07), transparent 27%),
    radial-gradient(
      circle at 95% 85%,
      rgba(43, 167, 218, 0.06),
      transparent 26%
    ),
    #ffffff;
}

.new-microscope-contact .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.new-microscope-contact-heading-wrap {
  max-width: 730px;
  margin: 0 auto 45px;
  text-align: center;
}

.new-microscope-contact-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: #172d97;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.new-microscope-contact-subtitle::before,
.new-microscope-contact-subtitle::after {
  content: "";
  width: 32px;
  height: 2px;
  background: #172d97;
}

.new-microscope-contact-main-heading {
  margin: 0;
  color: #111d82;
  font-size: 39px;
  line-height: 1.3;
  font-weight: 700;
}

.new-microscope-contact-heading-text {
  max-width: 620px;
  margin: 13px auto 0;
  color: #727987;
  font-size: 15px;
  line-height: 1.8;
}

/* Contact information cards */

.new-microscope-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.new-microscope-contact-info-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 135px;
  padding: 23px 22px;
  overflow: hidden;
  border: 1px solid #e5e8f0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(16, 34, 105, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.new-microscope-contact-info-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(22, 46, 151, 0.05);
  transition: transform 0.35s ease;
}

.new-microscope-contact-info-card:hover {
  transform: translateY(-5px);
  border-color: #c8d1ed;
  box-shadow: 0 15px 35px rgba(16, 34, 105, 0.12);
}

.new-microscope-contact-info-card:hover::after {
  transform: scale(1.4);
}

.new-microscope-contact-info-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  min-width: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #152d9b, #2686d4);
  color: #ffffff;
  font-size: 25px;
  box-shadow: 0 10px 22px rgba(20, 46, 157, 0.22);
  transition:
    transform 0.35s ease,
    border-radius 0.35s ease;
}

.new-microscope-contact-info-card:hover .new-microscope-contact-info-icon {
  transform: rotate(-5deg) scale(1.04);
  border-radius: 50%;
}

.new-microscope-contact-info-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.new-microscope-contact-info-title {
  margin: 0 0 7px;
  color: #111d7e;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.new-microscope-contact-info-text,
.new-microscope-contact-info-link {
  display: block;
  margin: 0;
  color: #727987;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.new-microscope-contact-info-link:hover {
  color: #172d97;
}

/* Map */

.new-microscope-contact-map {
  width: 100%;
  height: 100%;
  min-height: 441px;
  overflow: hidden;
  border: 1px solid #e5e8f0;
  border-radius: 16px;
  background: #eeeeee;
  box-shadow: 0 10px 32px rgba(16, 34, 105, 0.08);
}

.new-microscope-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 441px;
  border: 0;
}

/* Contact form */

.new-microscope-contact-form-wrap {
  margin-top: 30px;
  padding: 40px;
  border: 1px solid #e4e8f0;
  border-radius: 18px;
  background: #f8f9fc;
  box-shadow: 0 12px 38px rgba(16, 34, 105, 0.07);
}

.new-microscope-contact-form-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.new-microscope-contact-form-title {
  margin: 0;
  color: #101d7c;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
}

.new-microscope-contact-form-description {
  margin: 9px 0 0;
  color: #757c88;
  font-size: 14px;
  line-height: 1.7;
}

.new-microscope-contact-form-label {
  display: block;
  margin-bottom: 9px;
  color: #303641;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.new-microscope-contact-required {
  color: #ee2432;
}

.new-microscope-contact-input-wrap {
  position: relative;
}

.new-microscope-contact-input-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 18px;
  color: #192f95;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.new-microscope-contact-textarea-wrap .new-microscope-contact-input-icon {
  top: 20px;
  transform: none;
}

.new-microscope-contact-control {
  width: 100%;
  min-height: 55px;
  padding: 13px 18px 13px 48px;
  border: 1px solid #dfe3ec;
  border-radius: 9px;
  outline: none;
  background: #ffffff;
  color: #20242d;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.new-microscope-contact-control::placeholder {
  color: #a0a5af;
}

.new-microscope-contact-control:focus {
  border-color: #18339c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(24, 51, 156, 0.09);
}

textarea.new-microscope-contact-control {
  min-height: 170px;
  resize: vertical;
  padding-top: 16px;
}

.new-microscope-contact-error {
  display: none;
  margin-top: 6px;
  color: #e12632;
  font-size: 12px;
  line-height: 1.4;
}

.new-microscope-contact-control.is-invalid {
  border-color: #e12632;
  box-shadow: 0 0 0 4px rgba(225, 38, 50, 0.07);
}

.new-microscope-contact-control.is-invalid + .new-microscope-contact-error {
  display: block;
}

.new-microscope-contact-submit {
  min-width: 190px;
  min-height: 55px;
  padding: 13px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid #172d97;
  border-radius: 8px;
  background: #172d97;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 45, 151, 0.2);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.new-microscope-contact-submit:hover {
  background: #ffffff;
  color: #172d97;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(23, 45, 151, 0.17);
}

.new-microscope-contact-submit i {
  font-size: 15px;
}

.new-microscope-contact-form-message {
  display: none;
  margin-top: 18px;
  padding: 13px 16px;
  border: 1px solid #b7e3ca;
  border-radius: 7px;
  background: #ecfff4;
  color: #13743b;
  font-size: 13px;
  line-height: 1.6;
}

.new-microscope-contact-form-message.show {
  display: block;
}

@media (max-width: 1199px) {
  .new-microscope-contact {
    padding: 65px 0;
  }

  .new-microscope-contact-main-heading {
    font-size: 35px;
  }

  .new-microscope-contact-info-card {
    min-height: 130px;
  }
}

@media (max-width: 991px) {
  .new-microscope-contact {
    padding: 55px 0;
  }

  .new-microscope-contact-heading-wrap {
    margin-bottom: 37px;
  }

  .new-microscope-contact-main-heading {
    font-size: 32px;
  }

  .new-microscope-contact-map,
  .new-microscope-contact-map iframe {
    min-height: 420px;
  }

  .new-microscope-contact-form-wrap {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .new-microscope-contact {
    padding: 45px 0;
  }

  .new-microscope-contact-main-heading {
    font-size: 28px;
  }

  .new-microscope-contact-info-card {
    min-height: auto;
  }

  .new-microscope-contact-map,
  .new-microscope-contact-map iframe {
    min-height: 360px;
  }

  .new-microscope-contact-form-wrap {
    margin-top: 24px;
    padding: 26px 22px;
  }

  .new-microscope-contact-form-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .new-microscope-contact {
    padding: 38px 0;
  }

  .new-microscope-contact .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .new-microscope-contact-heading-wrap {
    margin-bottom: 30px;
  }

  .new-microscope-contact-subtitle {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .new-microscope-contact-subtitle::before,
  .new-microscope-contact-subtitle::after {
    width: 23px;
  }

  .new-microscope-contact-main-heading {
    font-size: 25px;
  }

  .new-microscope-contact-heading-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .new-microscope-contact-info-card {
    align-items: flex-start;
    gap: 15px;
    padding: 20px 17px;
    border-radius: 12px;
  }

  .new-microscope-contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    font-size: 21px;
  }

  .new-microscope-contact-info-title {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .new-microscope-contact-info-text,
  .new-microscope-contact-info-link {
    font-size: 13px;
    line-height: 1.65;
  }

  .new-microscope-contact-map,
  .new-microscope-contact-map iframe {
    min-height: 300px;
  }

  .new-microscope-contact-form-wrap {
    padding: 23px 16px;
    border-radius: 13px;
  }

  .new-microscope-contact-form-header {
    margin-bottom: 24px;
  }

  .new-microscope-contact-form-title {
    font-size: 23px;
  }

  .new-microscope-contact-form-description {
    font-size: 13px;
  }

  .new-microscope-contact-control {
    min-height: 52px;
    padding-left: 45px;
    font-size: 13px;
  }

  textarea.new-microscope-contact-control {
    min-height: 145px;
  }

  .new-microscope-contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }
}
/* ====================================== contact us end ============  */

/* =================================== product page ka css  */
.automated-microscope-section {
  position: relative;
  width: 100%;
  padding: 75px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 40%,
      rgba(31, 104, 220, 0.07),
      transparent 30%
    ),
    #ffffff;
}

.automated-microscope-section .container {
  max-width: 1440px;
}

.automated-microscope-row {
  align-items: center;
}

/* =========================
           IMAGE GALLERY
 ========================= */

.automated-microscope-gallery {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: 100%;
}

.automated-microscope-thumbnails {
  width: 92px;
  min-width: 92px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.automated-microscope-thumbnail {
  position: relative;
  width: 92px;
  height: 88px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  outline: none;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.automated-microscope-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.automated-microscope-thumbnail:hover {
  transform: translateY(-2px);
  border-color: #1478f2;
}

.automated-microscope-thumbnail.active {
  border-color: #1478f2;
  box-shadow: 0 0 0 3px rgba(20, 120, 242, 0.12);
}

.automated-microscope-main-image {
  position: relative;
  width: calc(100% - 110px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #f7f9fc 68%,
    #eff3f8 100%
  );
}

.automated-microscope-main-image::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 11%;
  width: 78%;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(22px);
}

.automated-microscope-main-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 94%;
  height: 470px;
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    transform 0.4s ease;
}

.automated-microscope-main-image:hover img {
  transform: scale(1.025);
}

.automated-microscope-image-badge {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 22px;
  padding: 8px 17px;
  border-radius: 50px;
  background: #ffffff;
  color: #0d2b83;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(18, 44, 115, 0.12);
}

.automated-microscope-zoom {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  width: 47px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #152c8c;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 44, 115, 0.13);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.automated-microscope-zoom:hover {
  background: #1478f2;
  color: #ffffff;
  transform: scale(1.06);
}

/* =========================
           CONTENT
        ========================= */

.automated-microscope-content {
  padding-left: 34px;
}

.automated-microscope-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #1478f2;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.automated-microscope-label::before {
  content: "";
  width: 35px;
  height: 2px;
  background: #1478f2;
}

.automated-microscope-title {
  max-width: 700px;
  margin: 0;
  color: #252525;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -1.8px;
}

.automated-microscope-description {
  max-width: 710px;
  margin-top: 26px;
  color: #323944;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}

.automated-microscope-description p {
  margin: 0 0 18px;
}

.automated-microscope-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 26px;
}

.automated-microscope-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #2c3540;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.automated-microscope-feature-icon {
  width: 29px;
  height: 29px;
  min-width: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf4ff;
  color: #1478f2;
  font-size: 13px;
}

.automated-microscope-button-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.automated-microscope-primary-button,
.automated-microscope-secondary-button {
  min-height: 53px;
  padding: 13px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 50px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.automated-microscope-primary-button {
  border: 2px solid #1478f2;
  background: #1478f2;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 120, 242, 0.22);
}

.automated-microscope-primary-button:hover {
  background: #0d65d4;
  border-color: #0d65d4;
  color: #ffffff;
  transform: translateY(-3px);
}

.automated-microscope-secondary-button {
  border: 2px solid #d9e0e9;
  background: #ffffff;
  color: #202c3b;
}

.automated-microscope-secondary-button:hover {
  border-color: #1478f2;
  color: #1478f2;
  transform: translateY(-3px);
}

/* =========================
           IMAGE MODAL
        ========================= */

.automated-microscope-modal-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.automated-microscope-modal .modal-content {
  border: 0;
  border-radius: 18px;
  background: #ffffff;
}

.automated-microscope-modal .modal-header {
  border-bottom: 1px solid #eeeeee;
}

/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 1399px) {
  .automated-microscope-title {
    font-size: 45px;
  }

  .automated-microscope-main-image {
    min-height: 455px;
  }

  .automated-microscope-main-image img {
    height: 425px;
  }

  .automated-microscope-content {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {
  .automated-microscope-section {
    padding: 65px 0;
  }

  .automated-microscope-gallery {
    gap: 13px;
  }

  .automated-microscope-thumbnails {
    width: 76px;
    min-width: 76px;
  }

  .automated-microscope-thumbnail {
    width: 76px;
    height: 74px;
  }

  .automated-microscope-main-image {
    width: calc(100% - 89px);
    min-height: 420px;
  }

  .automated-microscope-main-image img {
    height: 390px;
  }

  .automated-microscope-title {
    font-size: 39px;
  }

  .automated-microscope-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .automated-microscope-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .automated-microscope-section {
    padding: 55px 0;
  }

  .automated-microscope-content {
    padding-left: 0;
    margin-top: 38px;
  }

  .automated-microscope-main-image {
    min-height: 480px;
  }

  .automated-microscope-main-image img {
    height: 445px;
  }

  .automated-microscope-title {
    font-size: 38px;
  }

  .automated-microscope-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .automated-microscope-section {
    padding: 45px 0;
  }

  .automated-microscope-gallery {
    flex-direction: column-reverse;
  }

  .automated-microscope-thumbnails {
    width: 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .automated-microscope-thumbnail {
    width: 100%;
    height: 85px;
  }

  .automated-microscope-main-image {
    width: 100%;
    min-height: 395px;
    border-radius: 18px;
  }

  .automated-microscope-main-image img {
    height: 365px;
  }

  .automated-microscope-title {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .automated-microscope-description {
    margin-top: 21px;
  }
}

@media (max-width: 575px) {
  .automated-microscope-section {
    padding: 36px 0;
  }

  .automated-microscope-section .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .automated-microscope-main-image {
    min-height: 315px;
    border-radius: 15px;
  }

  .automated-microscope-main-image img {
    width: 100%;
    height: 290px;
  }

  .automated-microscope-thumbnail {
    height: 68px;
    padding: 5px;
    border-radius: 8px;
  }

  .automated-microscope-image-badge {
    top: 13px;
    left: 13px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .automated-microscope-zoom {
    right: 13px;
    bottom: 13px;
    width: 42px;
    height: 42px;
  }

  .automated-microscope-content {
    margin-top: 30px;
  }

  .automated-microscope-label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .automated-microscope-label::before {
    width: 26px;
  }

  .automated-microscope-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .automated-microscope-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .automated-microscope-description p {
    margin-bottom: 14px;
  }

  .automated-microscope-features {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .automated-microscope-button-wrap {
    align-items: stretch;
    flex-direction: column;
    margin-top: 27px;
  }

  .automated-microscope-primary-button,
  .automated-microscope-secondary-button {
    width: 100%;
  }
}
/* =================================== product page ka end  */

/* =================================== next page  */
.advanced-microscope-section {
  width: 100%;
  padding: 55px 0 45px;
  overflow: hidden;
  background: #dddddd75;
}

.advanced-microscope-section .container-fluid {
  max-width: 1810px;
  padding-left: 40px;
  padding-right: 40px;
}

.advanced-microscope-row {
  align-items: center;
}

/* Left image */

.advanced-microscope-image-wrap {
  position: relative;
  width: 100%;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-microscope-main-image {
  width: 100%;
  max-width: 880px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Right content */

.advanced-microscope-content {
  padding-left: 28px;
}

.advanced-microscope-title {
  max-width: 860px;
  margin: 0;
  color: #252525;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 64px;
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -1px;
}

.advanced-microscope-subtitle {
  margin: 15px 0 0;
  color: #1f1f1f;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.advanced-microscope-button {
  min-width: 170px;
  min-height: 35px;
  margin-top: 10px;
  padding: 11px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1278f2;
  border-radius: 50px;
  background: #1278f2;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.advanced-microscope-button:hover {
  background: transparent;
  color: #1278f2;
  transform: translateY(-2px);
}

.advanced-microscope-features {
  margin-top: 33px;
}

.advanced-microscope-feature {
  margin-bottom: 24px;
}

.advanced-microscope-feature:last-child {
  margin-bottom: 0;
}

.advanced-microscope-feature-title {
  margin: 0 0 3px;
  color: #111111;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
}

.advanced-microscope-feature-text {
  margin: 0;
  color: #1f1f1f;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1599px) {
  .advanced-microscope-section .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }

  .advanced-microscope-title {
    font-size: 35px;
  }

  .advanced-microscope-image-wrap {
    min-height: 560px;
  }

  .advanced-microscope-feature-text {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .advanced-microscope-title {
    font-size: 50px;
  }

  .advanced-microscope-subtitle {
    font-size: 18px;
  }

  .advanced-microscope-image-wrap {
    min-height: 500px;
  }

  .advanced-microscope-content {
    padding-left: 10px;
  }
}

@media (max-width: 1199px) {
  .advanced-microscope-section {
    padding: 50px 0;
  }

  .advanced-microscope-title {
    font-size: 44px;
  }

  .advanced-microscope-feature-title {
    font-size: 18px;
  }

  .advanced-microscope-feature-text {
    font-size: 15px;
  }

  .advanced-microscope-image-wrap {
    min-height: 450px;
  }
}

@media (max-width: 991px) {
  .advanced-microscope-section {
    padding: 45px 0;
  }

  .advanced-microscope-section .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .advanced-microscope-image-wrap {
    min-height: auto;
    margin-bottom: 35px;
  }

  .advanced-microscope-main-image {
    max-width: 760px;
  }

  .advanced-microscope-content {
    padding-left: 0;
  }

  .advanced-microscope-title {
    max-width: 100%;
    font-size: 44px;
  }

  .advanced-microscope-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .advanced-microscope-section {
    padding: 38px 0;
  }

  .advanced-microscope-title {
    font-size: 38px;
    line-height: 1.08;
  }

  .advanced-microscope-subtitle {
    margin-top: 12px;
    font-size: 16px;
  }

  .advanced-microscope-button {
    min-width: 170px;
    min-height: 45px;
    font-size: 16px;
  }

  .advanced-microscope-features {
    margin-top: 28px;
  }

  .advanced-microscope-feature {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .advanced-microscope-section {
    padding: 30px 0;
  }

  .advanced-microscope-section .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .advanced-microscope-image-wrap {
    margin-bottom: 28px;
  }

  .advanced-microscope-title {
    font-size: 32px;
  }

  .advanced-microscope-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .advanced-microscope-button {
    width: 100%;
    max-width: 210px;
    min-height: 44px;
    font-size: 15px;
  }

  .advanced-microscope-features {
    margin-top: 25px;
  }

  .advanced-microscope-feature-title {
    font-size: 17px;
  }

  .advanced-microscope-feature-text {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 380px) {
  .advanced-microscope-title {
    font-size: 28px;
  }

  .advanced-microscope-subtitle {
    font-size: 13px;
  }
}
/* =================================== next page end */

/* ======================== 3rd image start ===============  */
.revolution-specifications {
  position: relative;
  width: 100%;
  padding: 55px 0 65px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 85%,
      rgba(25, 100, 190, 0.05),
      transparent 29%
    ),
    #ffffff;
}

.revolution-specifications .container-fluid {
  max-width: 1540px;
  padding-left: 30px;
  padding-right: 30px;
}

.revolution-specifications-row {
  align-items: center;
}

/* ===============================
           LEFT PRODUCT AREA
        =============================== */

.revolution-specifications-visual {
  position: relative;
  width: 100%;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #fbfcfe 64%,
    #f5f8fc 100%
  );
}

.revolution-specifications-visual::after {
  content: "";
  position: absolute;
  left: 11%;
  bottom: 8%;
  width: 76%;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(24px);
}

.revolution-specifications-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 94%;
  max-width: 940px;
  height: auto;
  object-fit: contain;
}

/* Dimension labels */

.revolution-dimension {
  position: absolute;
  z-index: 4;
  color: #050505;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 0.9;
}

.revolution-dimension strong {
  display: block;
  font-size: 47px;
  line-height: 0.9;
}

.revolution-dimension span {
  display: block;
  margin-top: 2px;
  font-size: 28px;
  line-height: 1;
}

.revolution-dimension-top {
  top: 32px;
  left: 21%;
}

.revolution-dimension-left {
  top: 44%;
  left: 1%;
  transform: translateY(-50%);
}

.revolution-dimension-bottom {
  left: 9%;
  bottom: 41px;
}

.revolution-dimension-line {
  position: absolute;
  z-index: 3;
  height: 2px;
  background: #202020;
  transform-origin: left center;
}

.revolution-dimension-line-top {
  top: 139px;
  left: 21%;
  width: 135px;
  transform: rotate(-5deg);
}

.revolution-dimension-line-left {
  top: 31%;
  left: 17%;
  width: 305px;
  transform: rotate(90deg);
}

.revolution-dimension-line-bottom {
  left: 19%;
  bottom: 111px;
  width: 150px;
  transform: rotate(29deg);
}

/* ===============================
           RIGHT SPECIFICATIONS
        =============================== */

.revolution-specifications-content {
  padding-left: 34px;
}

.revolution-specifications-title {
  margin: 0 0 35px;
  color: #1f252a;
  font-size: 35px;
  line-height: 1.15;
  font-weight: 600;
}

.revolution-specifications-list {
  max-width: 480px;
}

.revolution-specifications-item {
  position: relative;
  padding: 0 0 21px;
  margin-bottom: 24px;
  border-bottom: 2px solid #2980b9;
}

.revolution-specifications-item:last-child {
  margin-bottom: 0;
}

.revolution-specifications-item-title {
  margin: 0 0 5px;
  color: #121212;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.revolution-specifications-item-text {
  margin: 0;
  color: #30363d;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.revolution-specifications-item-text span {
  display: block;
}

/* Small decorative index */

.revolution-specifications-index {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(41, 128, 185, 0.12);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

/* ===============================
           RESPONSIVE
        =============================== */

@media (max-width: 1399px) {
  .revolution-specifications {
    padding: 50px 0 60px;
  }

  .revolution-specifications-visual {
    min-height: 570px;
  }

  .revolution-specifications-title {
    font-size: 43px;
  }

  .revolution-dimension strong {
    font-size: 41px;
  }

  .revolution-dimension span {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .revolution-specifications-visual {
    min-height: 500px;
  }

  .revolution-specifications-content {
    padding-left: 15px;
  }

  .revolution-specifications-title {
    margin-bottom: 28px;
    font-size: 39px;
  }

  .revolution-specifications-item {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .revolution-specifications-item-title {
    font-size: 22px;
  }

  .revolution-specifications-item-text {
    font-size: 13px;
  }

  .revolution-dimension strong {
    font-size: 36px;
  }

  .revolution-dimension span {
    font-size: 21px;
  }

  .revolution-dimension-line-left {
    width: 245px;
  }
}

@media (max-width: 991px) {
  .revolution-specifications {
    padding: 45px 0 55px;
  }

  .revolution-specifications .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .revolution-specifications-visual {
    min-height: 555px;
    margin-bottom: 38px;
  }

  .revolution-specifications-content {
    padding-left: 0;
  }

  .revolution-specifications-title {
    text-align: center;
  }

  .revolution-specifications-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .revolution-specifications-item {
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .revolution-specifications {
    padding: 38px 0 48px;
  }

  .revolution-specifications-visual {
    min-height: 445px;
    border-radius: 17px;
  }

  .revolution-specifications-image {
    width: 96%;
  }

  .revolution-specifications-title {
    margin-bottom: 25px;
    font-size: 35px;
  }

  .revolution-specifications-item-title {
    font-size: 21px;
  }

  .revolution-specifications-item-text {
    font-size: 13px;
  }

  .revolution-dimension strong {
    font-size: 30px;
  }

  .revolution-dimension span {
    font-size: 18px;
  }

  .revolution-dimension-top {
    top: 23px;
    left: 18%;
  }

  .revolution-dimension-left {
    left: 2%;
  }

  .revolution-dimension-bottom {
    left: 7%;
    bottom: 25px;
  }

  .revolution-dimension-line-top {
    top: 103px;
    left: 18%;
    width: 105px;
  }

  .revolution-dimension-line-left {
    left: 15%;
    width: 205px;
  }

  .revolution-dimension-line-bottom {
    left: 17%;
    bottom: 82px;
    width: 115px;
  }
}

@media (max-width: 575px) {
  .revolution-specifications {
    padding: 30px 0 40px;
  }

  .revolution-specifications .container-fluid {
    padding-left: 13px;
    padding-right: 13px;
  }

  .revolution-specifications-visual {
    min-height: 345px;
    margin-bottom: 30px;
    border-radius: 14px;
  }

  .revolution-specifications-title {
    font-size: 30px;
  }

  .revolution-specifications-item {
    margin-bottom: 18px;
    padding: 0 42px 16px 0;
    border-bottom-width: 2px;
  }

  .revolution-specifications-item-title {
    font-size: 19px;
  }

  .revolution-specifications-item-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .revolution-specifications-index {
    font-size: 34px;
  }

  .revolution-dimension strong {
    font-size: 23px;
  }

  .revolution-dimension span {
    font-size: 14px;
  }

  .revolution-dimension-top {
    top: 16px;
    left: 17%;
  }

  .revolution-dimension-left {
    top: 45%;
    left: 1%;
  }

  .revolution-dimension-bottom {
    left: 6%;
    bottom: 15px;
  }

  .revolution-dimension-line-top {
    top: 72px;
    left: 17%;
    width: 76px;
  }

  .revolution-dimension-line-left {
    top: 30%;
    left: 13%;
    width: 155px;
  }

  .revolution-dimension-line-bottom {
    left: 15%;
    bottom: 55px;
    width: 82px;
  }
}

@media (max-width: 390px) {
  .revolution-specifications-visual {
    min-height: 300px;
  }

  .revolution-specifications-title {
    font-size: 27px;
  }

  .revolution-dimension strong {
    font-size: 20px;
  }

  .revolution-dimension span {
    font-size: 12px;
  }
}
/* ======================== 3rd image end ===============  */

/* ================================ product -details start  ===================  */
.new-microscope-products {
  position: relative;
  width: 100%;
  padding: 75px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(31, 55, 160, 0.06), transparent 25%),
    radial-gradient(
      circle at 95% 90%,
      rgba(27, 153, 215, 0.06),
      transparent 25%
    ),
    #ffffff;
}

.new-microscope-products .container {
  max-width: 1390px;
  padding-left: 35px;
  padding-right: 35px;
}

.new-microscope-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.new-microscope-products-heading-content {
  max-width: 760px;
}

.new-microscope-products-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #15319a;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.new-microscope-products-subtitle::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #15319a;
}

.new-microscope-products-title {
  margin: 0;
  color: #101b82;
  font-size: 39px;
  line-height: 1.3;
  font-weight: 700;
}

.new-microscope-products-description {
  max-width: 670px;
  margin: 12px 0 0;
  color: #747b87;
  font-size: 15px;
  line-height: 1.8;
}

.new-microscope-products-view-all {
  min-width: 155px;
  min-height: 48px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #15319a;
  border-radius: 50px;
  background: transparent;
  color: #15319a;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.new-microscope-products-view-all:hover {
  background: #15319a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==============================
   SLICK SLIDER
============================== */

.new-microscope-products-slider {
  position: relative !important;
  margin-left: -12px;
  margin-right: -12px;
}

.new-microscope-products-slider .slick-list {
  overflow: hidden !important;
  padding-top: 10px;
  padding-bottom: 12px;
}

.new-microscope-products-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

.new-microscope-products-slider .slick-slide {
  height: auto !important;
}

.new-microscope-products-slider .slick-slide > div {
  height: 100%;
}

.new-microscope-products-slide {
  height: 100%;
  padding: 0 12px;
}

/* ==============================
   PRODUCT CARD
============================== */

.new-microscope-product-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid #e5e8ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(18, 40, 104, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.new-microscope-product-card:hover {
  transform: translateY(-8px);
  border-color: #cbd4ef;
  box-shadow: 0 20px 45px rgba(18, 40, 104, 0.14);
}

.new-microscope-product-image-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #f7f9fc 68%,
    #eff3f8 100%
  );
}

.new-microscope-product-image-wrap::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 18px;
  width: 70%;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(15px);
}

.new-microscope-product-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  /* padding: 24px; */
  object-fit: cover;
  transition: transform 0.45s ease;
}

.new-microscope-product-card:hover .new-microscope-product-image {
  transform: scale(1.06);
}

.new-microscope-product-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  padding: 7px 13px;
  border-radius: 50px;
  background: #15319a;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.new-microscope-product-wishlist {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 43px;
  height: 43px;
  min-width: 43px;
  min-height: 43px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  outline: none;
  background: #ffffff;
  color: #1d2733;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(18, 40, 104, 0.11);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.new-microscope-product-wishlist:hover,
.new-microscope-product-wishlist.active {
  background: #ef2434;
  color: #ffffff;
  transform: scale(1.05);
}

.new-microscope-product-content {
  padding: 23px 22px 24px;
}

.new-microscope-product-category {
  display: block;
  margin-bottom: 7px;
  color: #1c68bd;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.new-microscope-product-name {
  margin: 0;
  color: #111b70;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.new-microscope-product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-microscope-product-name a:hover {
  color: #1479ef;
}

.new-microscope-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 11px;
  color: #f8b400;
  font-size: 14px;
}

.new-microscope-product-rating-count {
  margin-left: 7px;
  color: #8a9099;
  font-size: 12px;
}

.new-microscope-product-text {
  margin: 13px 0 0;
  color: #747b86;
  font-size: 13px;
  line-height: 1.75;
}

.new-microscope-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 19px;
  padding-top: 18px;
  border-top: 1px solid #eaedf2;
}

.new-microscope-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18349b;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.new-microscope-product-link:hover {
  color: #1479ef;
  gap: 12px;
}

.new-microscope-product-enquiry {
  min-width: 112px;
  min-height: 39px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #18349b;
  border-radius: 50px;
  background: #18349b;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.new-microscope-product-enquiry:hover {
  background: transparent;
  color: #18349b;
  transform: translateY(-2px);
}

/* ========================================
   FIXED SLICK PREVIOUS / NEXT ARROW BUTTON
======================================== */

.new-microscope-products-slider .slick-prev,
.new-microscope-products-slider .slick-next {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;

  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 1px solid #dfe4ed !important;
  border-radius: 50% !important;
  outline: none !important;

  background: #ffffff !important;
  color: transparent !important;

  font-family: inherit !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  white-space: nowrap !important;

  opacity: 1 !important;
  visibility: visible !important;

  transform: translateY(-50%) !important;
  z-index: 99 !important;

  cursor: pointer !important;
  overflow: hidden !important;

  box-shadow: 0 8px 22px rgba(18, 40, 104, 0.14) !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease !important;
}

.new-microscope-products-slider .slick-prev {
  left: -16px !important;
  right: auto !important;
}

.new-microscope-products-slider .slick-next {
  right: -16px !important;
  left: auto !important;
}

/* Remove default Slick before icon */
.new-microscope-products-slider .slick-prev::before,
.new-microscope-products-slider .slick-next::before {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

/* Custom Font Awesome arrow */
.new-microscope-products-slider .slick-prev::after,
.new-microscope-products-slider .slick-next::after {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;

  display: block !important;

  font-family: "Font Awesome 6 Free" !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  color: #172f94 !important;

  text-indent: 0 !important;
  opacity: 1 !important;

  transform: translate(-50%, -50%) !important;
}

.new-microscope-products-slider .slick-prev::after {
  content: "\f053" !important;
}

.new-microscope-products-slider .slick-next::after {
  content: "\f054" !important;
}

.new-microscope-products-slider .slick-prev:hover,
.new-microscope-products-slider .slick-prev:focus,
.new-microscope-products-slider .slick-next:hover,
.new-microscope-products-slider .slick-next:focus {
  border-color: #15319a !important;
  background: #15319a !important;
  outline: none !important;
  box-shadow: 0 10px 26px rgba(21, 49, 154, 0.25) !important;
}

.new-microscope-products-slider .slick-prev:hover::after,
.new-microscope-products-slider .slick-prev:focus::after,
.new-microscope-products-slider .slick-next:hover::after,
.new-microscope-products-slider .slick-next:focus::after {
  color: #ffffff !important;
}

.new-microscope-products-slider .slick-prev:active,
.new-microscope-products-slider .slick-next:active {
  transform: translateY(-50%) scale(0.94) !important;
}

.new-microscope-products-slider .slick-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

/* ==============================
   SLICK DOTS
============================== */

.new-microscope-products-slider .slick-dots {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.new-microscope-products-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.new-microscope-products-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.new-microscope-products-slider .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c4c9d2;
  opacity: 1;
  transition:
    width 0.3s ease,
    background 0.3s ease,
    border-radius 0.3s ease;
}

.new-microscope-products-slider .slick-dots li.slick-active {
  width: 22px;
}

.new-microscope-products-slider .slick-dots li.slick-active button,
.new-microscope-products-slider .slick-dots li.slick-active button::before {
  width: 22px;
}

.new-microscope-products-slider .slick-dots li.slick-active button::before {
  border-radius: 20px;
  background: #15319a;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1199px) {
  .new-microscope-products {
    padding: 65px 0 85px;
  }

  .new-microscope-products-title {
    font-size: 35px;
  }

  .new-microscope-product-card {
    min-height: 500px;
  }

  .new-microscope-product-image-wrap {
    height: 275px;
  }

  .new-microscope-products-slider .slick-prev {
    left: -10px !important;
  }

  .new-microscope-products-slider .slick-next {
    right: -10px !important;
  }
}

@media (max-width: 991px) {
  .new-microscope-products {
    padding: 55px 0 80px;
  }

  .new-microscope-products-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .new-microscope-products-title {
    font-size: 32px;
  }

  .new-microscope-product-image-wrap {
    height: 290px;
  }

  .new-microscope-products-slider .slick-prev,
  .new-microscope-products-slider .slick-next {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .new-microscope-products {
    padding: 45px 0 75px;
  }

  .new-microscope-products .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .new-microscope-products-title {
    font-size: 28px;
  }

  .new-microscope-products-description {
    font-size: 14px;
  }

  .new-microscope-product-card {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .new-microscope-products {
    padding: 38px 0 70px;
  }

  .new-microscope-products .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .new-microscope-products-header {
    margin-bottom: 27px;
  }

  .new-microscope-products-subtitle {
    font-size: 11px;
  }

  .new-microscope-products-title {
    font-size: 25px;
  }

  .new-microscope-products-description {
    font-size: 13px;
    line-height: 1.7;
  }

  .new-microscope-products-view-all {
    min-height: 44px;
    font-size: 13px;
  }

  .new-microscope-products-slider {
    margin-left: -7px;
    margin-right: -7px;
  }

  .new-microscope-products-slide {
    padding: 0 7px;
  }

  .new-microscope-product-card {
    border-radius: 14px;
  }

  .new-microscope-product-image-wrap {
    height: 245px;
  }

  .new-microscope-product-content {
    padding: 20px 17px 21px;
  }

  .new-microscope-product-name {
    font-size: 17px;
  }

  .new-microscope-product-text {
    font-size: 12px;
  }

  .new-microscope-product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .new-microscope-product-enquiry {
    width: 100%;
    min-height: 42px;
  }
}
/* ================================ product -details end  ===================  */

.product-description-section {
  /* padding: 80px 0; */
  background: #fff;
  padding-bottom: 70px;
  padding-top: 20px;
}

.product-description-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.description-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  background: #172d97;
  display: inline-block;
  padding: 3px 16px;
  border-radius: 20px;
}

.description-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #555;
  margin-bottom: 35px;
}

.description-content p {
  font-size: 16px;
  /* line-height: 1.9; */
  color: #222;
  margin: 0 0 5px;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 991px) {
  .product-description-section {
    padding: 60px 0;
  }

  .description-title {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .description-subtitle {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .description-content p {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .product-description-section {
    padding: 40px 0;
  }

  .description-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .description-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .description-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
}




table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  table-layout: fixed;
  word-wrap: break-word;
  margin-bottom: 20px;
}

table th,
table td {
  border: 1px solid #bfbfbf !important;
  padding: 12px !important;
  vertical-align: top;
  word-break: break-word;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  table {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: normal !important;
  }

  table th,
  table td {
    padding: 10px !important;
    font-size: 14px;
    word-break: break-word;
    white-space: normal !important;
  }
}