

.service_banner_sec {
    padding:8rem 0 3rem;
  /* margin-top: -90px; */
  position: relative;
  /*min-height: 100vh;*/
  height:auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

/* Video */
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(5, 10, 40, 0.8));
  z-index: 2;
}
.marquee-wrapper{
  display: flex!important;
  flex-direction: column!important;
  flex-wrap: wrap!important;
}
/* Content */
.service_banner_sec_con {
  width: 100%;
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.service_banner_sec_con h1 {
  text-transform: capitalize;
  font-size: 5.5rem;
  font-weight: normal;
  margin-bottom: 15px;
}

.service_banner_sec_con p {
  font-size: 1.5rem;
  color: #dcdcdc;
  margin-bottom: 30px;
}

/* Buttons */
.banner-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #1e6bff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: #1554cc;
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

/* Mobile Optimization */


/* === Custom CSS (Same as before) === */
.crm-tabs-container {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); */
  /* min-height: 100vh; */
  padding: 50px 0 30px 0;
  color: white;
}

.crm-tabs-head h2 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.crm-tabs-head p {
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.crm-tabs-wrapper {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  max-width: 1200px;
  margin: 0 auto;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crm-nav-tabs {
  height: 550px;
  background-color: #fff;
  margin: 1rem;
  border-radius: 10px;
  width: 350px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  overflow-y: auto;
}

.crm-nav-link {
  background-color: #1e40af;
  border: none;
  border-radius: 12px;
  margin: 8px 15px;
  padding: 15px 20px;
  color: #ddd;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.panel-left {
  border-left: 5px solid #0a78be !important;
}
.panel-right {
  border-right: 5px solid #0a78be !important;
}
.crm-nav-link:hover {
  background-color: #1e40af;
  color: white;
  transform: translateX(5px);
}

.crm-nav-link.active {
  background-color: white;
  color: #1e40af;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.crm-nav-link.active::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
}

.crm-nav-link i {
  margin-right: 12px;
  font-size: 1.3rem;
}

.crm-tab-content {
  padding: 50px;
  color: white;
  display: none;
}

.crm-tab-content.active {
  display: block;
}

.crm-tab-title {
  font-size: 2.2rem;
  text-align: start;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.crm-tab-description {
  font-size: 1rem;
  color: #fff;
  text-align: start;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
}

.crm-features-list {
  list-style: none;
  padding: 0;
}

.crm-features-list li {
  font-size: 1.15rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
}

.crm-features-list li::before {
  content: "➤";
  color: #34d399;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .crm-tabs-wrapper {
    flex-direction: column;
  }

  .crm-nav-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
  }

  .crm-nav-link {
    min-width: 180px;
    margin: 5px;
    font-size: 0.9rem;
  }

  .crm-tab-content {
    padding: 30px 20px;
  }

  .crm-tab-title {
    font-size: 1.8rem;
  }
}

:root {
  --cta-bg: #0a0a0a;
  --cta-fg: #ffffff;
  --cta-accent: #ffffff;
  --cta-dim: #c9c9c9;
  --cta-radius: 24px;
}

.strip-cta {
  color: var(--cta-fg);
  background: var(--cta-bg);

  border-radius: var(--cta-radius);
  /* padding: 0 0 0 2rem; */
  margin: 24px 0;
}

.strip-cta__inner {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.strip-cta__title {
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: 0.2px;
}

.strip-cta__title span {
  color: var(--cta-accent);
}

.strip-cta__btn {
  cursor: pointer;
  --btn-bg: #1e6bff;
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(183, 255, 122, 0.35);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.strip-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(183, 255, 122, 0.45);
}

.strip-cta__btn svg {
  width: 22px;
  height: 22px;
}

.strip-cta__img {
  border-radius: 0 20px 20px 0;
  float: right;
  width: auto;
  height: 300px;
  object-fit: cover;
  opacity: 0.85;
}

.strip-cta__text {
  margin: 1rem 0 1rem 1rem;
}

@media (max-width: 992px) {
  .strip-cta__inner {
    grid-template-columns: 1fr;
  }

  .strip-cta__media {
    order: 2;
    height: 260px;
  }

  .strip-cta__text {
    order: 1;
  }
}

@media (max-width: 560px) {
  .strip-cta {
    border-radius: 18px;
  }

  .strip-cta__media {
    height: 220px;
  }
}

.milestone-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.milestone-icon {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e6bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}

.blockchain-section {
  background: #000;
  color: #fff;
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
}

.section-title span {
  color: #1e6bff;
}

.section-subtitle {
  max-width: 750px;
  margin: 15px auto 0;
  color: #ccc;
  font-size: 15px;
}

.block-card {
  height: 100%;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 30px 25px;
  background: #000;
  transition: all 0.3s ease;
}

.block-card:hover {
  border-color: #1e6bff;
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #1e6bff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 22px;
  color: #fff;
}

.block-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.block-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.blockchain-btn {
  background: #1e6bff;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  border: none;
}

.blockchain-btn:hover {
  background: #1554cc;
}

/* ceo message */

.ceo-message-section {
  padding: 2rem 0;
  background: #f7f9fc;
}

.ceo-message-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: auto;
  position: relative;
}

.ceo-profile {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.ceo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 18px;
}

.ceo-info h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.ceo-role {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.ceo-message {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  position: relative;
  padding-left: 35px;
}

.quote-icon {
  font-size: 40px;
  color: #ff6a00;
  position: absolute;
  left: 0;
  top: -10px;
}

@media (max-width: 768px) {
  .ceo-message-card {
    padding: 25px;
  }

  .ceo-profile {
    flex-direction: column;
    text-align: center;
  }

  .ceo-img {
    margin-bottom: 10px;
  }

  .ceo-message {
    padding-left: 0;
    margin-top: 10px;
  }

  .quote-icon {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }
}

/* ceo message */

.blockchain-stats-section {
  padding: 2rem 0;
  background: #000;
  color: #fff;
}

.stats-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}

.stats-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-6px);
}

.stats-icon {
  width: 45px;
  height: 45px;
  background: #1e6bff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.stats-icon i {
  color: #fff;
  font-size: 20px;
}

.stats-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.stats-card p {
  font-size: 13px;
  color: #444;
  margin: 0;
  line-height: 1.4;
}

/* Bottom Highlight */
.stats-highlight {
  border: 2px solid #1e6bff;
  border-radius: 14px;
  padding: 25px 30px;
  background: radial-gradient(circle at top, #0c1b2a, #000);
}

.stats-highlight h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-highlight p {
  color: #ccc;
  margin: 0;
  font-size: 15px;
}

.stats-btn {
  background: #1e6bff;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
}

.stats-btn:hover {
  background: #1554cc;
}

.blockchain-solutions-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.bss-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.bss-para {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.bss-timeline {
    position: relative;
    padding: 10px 0;
}

.bss-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dde3f0;
    transform: translateX(-50%);
    z-index: 0;
}
.bss-timeline-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0%;
    background: #1a73e8;
    transform: translateX(-50%);
    z-index: 1;
    transition: height 0.05s linear;
}

.bss-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.bss-left {
    flex-direction: row;
}

.bss-right {
    flex-direction: row-reverse;
}
.stats-subtitle {
    font-size: 15px;
    color: #fff;
    line-height: 1.8;
    max-width: 800px;
    margin: 10px auto 0;
    opacity: 0.85;
}
.bss-card {
    width: calc(50% - 50px);
    background: #fff;
    border: 1px solid #e4e9f2;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}

.bss-left .bss-card {
    margin-right: auto;
    margin-left: 0;
}

.bss-right .bss-card {
    margin-left: auto;
    margin-right: 0;
}

.bss-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.bss-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.bss-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.bss-dot {
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dde3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .bss-timeline::before {
        left: 20px;
    }
    .bss-item.bss-left,
    .bss-item.bss-right {
        flex-direction: column;
        padding-left: 60px;
    }
    .bss-card {
        width: 100%;
        margin: 0 !important;
    }
    .bss-dot {
        left: 0;
        transform: none;
    }
    .bss-title {
        font-size: 24px;
    }
}
.bss-card {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bss-left .bss-card {
    transform: translateX(-60px);
}

.bss-right .bss-card {
    transform: translateX(60px);
}

.bss-card.bss-animate {
    opacity: 1;
    transform: translateX(0);
}

.bss-dot {
    opacity: 0;
    transform: translateX(-50%) scale(0);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.bss-dot.bss-animate {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

@media (max-width: 768px) {
    .bss-dot.bss-animate {
        transform: translateX(0) scale(1);
    }
}


.industry-blockchain-section {
  background: #000;
  color: #fff;
}

/* Title */
.industry-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.industry-subtitle {
  color: #ccc;

  margin: 15px auto 0;
  font-size: 16px;
}

/* Card */
.industry-card {
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
}

/* Overlay Content */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  padding: 25px;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 26px;
}

.industry-card:hover .industry-overlay {
  opacity: 1;
}

.industry-overlay h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.industry-overlay p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}

.industry-overlay a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}

/* Image area */
.industry-img {
  height: 260px;
  background: #eaf3ff;
  border-radius: 26px;
  overflow: hidden;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom label */
.industry-label {
  background: #fff;
  color: #000;
  border-radius: 0 0 20px;
  padding: 18px 22px;
  margin-top: -22px;
  position: relative;
}

.industry-label span {
  font-size: 14px;
  color: #555;
}

.industry-label h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

/* Hover effect */
.industry-card:hover .industry-img img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-title {
    font-size: 30px;
  }

  .industry-img {
    height: 220px;
  }

  .industry-label h4 {
    font-size: 22px;
  }
}

.blockchain-cta-section {
  background: #000;
}

.blockchain-cta-box {
  background: #1e66f5;
  border-radius: 10px;
  padding: 3rem 1.5rem;
  color: #fff;
}

.blockchain-cta-box h3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blockchain-cta-box p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 35px;
  color: #eaf0ff;
}

/* CTA Button */
.blockchain-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #1e66f5;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blockchain-cta-btn svg {
  width: 22px;
  height: 22px;
}

.blockchain-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .blockchain-cta-box {
    border-radius: 30px;
    padding: 50px 25px;
  }

  .blockchain-cta-box h2 {
    font-size: 28px;
  }

  .blockchain-cta-box p {
    font-size: 16px;
  }
}

.process-section {
    padding: 70px 0;
    background: #fff;
}

.process-header {
    margin-bottom: 55px;
}

.process-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
}

.process-para {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
}

.prs-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e4e9f2;
    border-radius: 20px;
    overflow: hidden;
}

.prs-item {
    padding: 32px 28px;
    border-right: 1px solid #e4e9f2;
    border-bottom: 1px solid #e4e9f2;
    position: relative;
    background: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.prs-item.prs-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

.prs-item:nth-child(4n) {
    border-right: none;
}

.prs-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.prs-item:hover {
    background: #1a1a2e;
    z-index: 1;
}

.prs-number {
    font-size: 36px;
    font-weight: 800;
    color: #e4e9f2;
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.prs-item:hover .prs-number {
    color: #1a73e8;
}

.prs-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.prs-item:hover .prs-content h3 {
    color: #fff;
}

.prs-content p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.prs-item:hover .prs-content p {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 992px) {
    .prs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .prs-item:nth-child(4n) {
        border-right: 1px solid #e4e9f2;
    }
    .prs-item:nth-child(2n) {
        border-right: none;
    }
    .prs-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #e4e9f2;
    }
    .prs-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .prs-wrapper {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    .prs-item {
        border-right: none !important;
        border-bottom: 1px solid #e4e9f2 !important;
    }
    .prs-item:last-child {
        border-bottom: none !important;
    }
    .process-title {
        font-size: 24px;
    }
    .process-section {
        padding: 40px 0;
    }
}

.tools_tech_wrap {
  background: #000;
  padding: 2rem 0 0 0;
}

.tools_tech_wrap .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1140px;
}

.heading2 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.app__subhead {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.tools_tech_wrapper {
  display: flex;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
}

/* LEFT */
.tools_tech_left {
  width: 38%;
  background: #1765f4;
  padding: 24px;
}

.tools_tech_scroll {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 520px;
  overflow-y: auto;
}

.tools_tab_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 10px;
}

.tools_tab_link.active {
  background: rgba(255, 255, 255, 0.18);
}

.tools_tab_link span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.tools_tab_link img {
  filter: brightness(0) invert(1);
}

/* RIGHT */
.tools_tech_rt {
  width: 62%;
  padding: 36px;
}

.tools_tab_content {
  display: none;
}

.tools_tab_content.active {
  display: block;
}

.tools_tab_grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tools_tab_grid li {
  background: #f6f7f9;
  border-radius: 16px;
  padding: 20px;
  font-weight: 600;
  color: #1765f4;
}

@media (max-width: 992px) {
  .tools_tech_wrapper {
    flex-direction: column;
  }

  .tools_tech_left,
  .tools_tech_rt {
    width: 100%;
  }
}

/* global presence */
.global_pressence {
  background-color: #000;
  padding: 4rem 0;
}

.global_pressence h2 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.global_pressence p {
  text-align: center;
  color: #fff;
  line-height: normal;
  font-size: 1rem;
}

.glob_pres_box {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 3rem 3rem 0 3rem;
  border-radius: 1.3rem;
  background-color: #4e4c4c8a;
}

.glob_pres_box .col-lg-2 {
  flex: 0 0 20%;
  /* Force equal width (20% for 5 items per row) */
  max-width: 20%;
  /* Ensure Bootstrap respects the width */
  margin-bottom: 3rem;
}

.glob_pres_box .col-lg-2 img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0 auto;
  display: block;
}

.glob_pres_box .col-lg-2 h5 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 15px;
}

.world_map {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/*  */
:root {
  --teal: #1ea3a0;
  --muted: #9aa0a6;
  --bg: #ffffff;
  --card-bg: #fff;
  --shadow: 0 20px 35px rgba(18, 18, 18, 0.06);
  --max-width: 1200px;
}

.testimonialswrap {
    background: #fff!important;
  max-width: var(--max-width);
  margin: 2rem auto;
  margin-bottom: 0 !important;
}

.testimonialswrap h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
}

/* Slider frame */
.crm-client-testimonisl-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 70px;
}

.crm-client-testimonisl-slider .slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1);
  will-change: transform;
  align-items: stretch;
}

.crm-client-testimonisl-slider .slide {
  box-sizing: border-box;
  padding: 24px;
  min-width: calc(100% / 3);
  /* default for desktop 3 slides */
  max-width: calc(100% / 3);
  transform: translateZ(0);
  padding-top: 46px;
  display: flex;
}

.crm-client-testimonisl-slider .card {
  height: 100%;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonialswrap {
    background: #fff;
}

.testimonialswrap .card {
    background: #fff;
    border: 1px solid #e4e9f2;
}

.testimonialswrap .card .name {
    color: #1a1a2e;
}

.testimonialswrap .card .role {
    color: #666;
}

.testimonialswrap .card .text p {
    color: #444;
}

/* Avatar and text layout */
.crm-client-testimonisl-slider .card-inner {
  height: 250px !important;
  align-items: flex-start;
  gap: 22px;
  height: 20px;
  overflow-y: auto;
}

.crm-client-testimonisl-slider .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 72px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

.crm-client-testimonisl-slider .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crm-client-testimonisl-slider .text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  flex: 1;
}

.crm-client-testimonisl-slider .name {
  font-weight: 600;
  font-size: 1rem;
}

.crm-client-testimonisl-slider .role {
  color: var(--muted);
  font-size: 14px;
  /* margin-top: 6px; */
}

/* controls */
.crm-client-testimonisl-slider .controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.crm-client-testimonisl-slider .ctrl-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  color: #333;
}

.crm-client-testimonisl-slider .ctrl-btn:focus {
  outline: none;
}

/* Responsive: 2 slides */
@media (max-width: 991.98px) {
  .crm-client-testimonisl-slider .slide {
    min-width: calc(100% / 2);
    max-width: calc(100% / 2);
  }

  .testimonialswrap h4 {
    font-size: 34px;
  }
}

/* Responsive: 1 slide */
@media (max-width: 767.98px) {
  .crm-client-testimonisl-slider .slide {
    min-width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .crm-client-testimonisl-slider .card {
    padding: 20px;
  }

  .crm-client-testimonisl-slider .avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .testimonialswrap h3 {
    font-size: 26px;
  }
}

.crm-client-testimonisl-slider .text p {
  margin: 0;
  white-space: normal;
}

.crm-client-testimonisl-slider .ctrl-btn {
  user-select: none;
}

.crm-cta-section {
  --bg: #ffffff;
  --accent: #ff5722;
  /* orange */
  --muted: #5b6b73;
  box-sizing: border-box;
  padding: 28px;
  background: #869eaa6f;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(29, 37, 41, 0.06);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 18px auto;
  overflow: hidden;
}

/* Left column (text) */
.crm-cta-content {
  padding-right: 8px;
}

.crm-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: none;
}

.crm-cta-title {
  font-size: 2.3rem;
  line-height: 1.03;
  margin: 0 0 12px 0;
  color: #0a78be;
  /* strong orange variant to match image */
  font-weight: 700;
}

.crm-cta-sub {
  font-size: 18px;
  color: #24343b;
  margin-bottom: 18px;
  max-width: 54ch;
}

.crm-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.crm-btn-primary {
  appearance: none;
  border: 0;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #0a78be);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(230, 63, 27, 0.18);
}

.crm-btn-outline {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e6e9eb;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

/* Right column (image) */
.crm-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}

.crm-cta-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(20, 28, 33, 0.06);
}

/* Responsive rules */
@media (max-width: 980px) {
  .crm-cta-section {
    grid-template-columns: 1fr 320px;
    padding: 22px;
  }

  .crm-cta-title {
    font-size: 36px;
  }

  .crm-cta-sub {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .crm-cta-section {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 18px;
    gap: 0;
  }

  .crm-cta-visual {
    order: -1;
    /* show image above text on very small screens like the reference */
    margin-bottom: 12px;
  }

  .crm-cta-title {
    font-size: 28px;
  }

  .crm-eyebrow {
    font-size: 13px;
  }

  .crm-cta-sub {
    font-size: 15px;
  }

  .crm-cta-visual img {
    width: 100%;
    border-radius: 8px;
  }

  .crm-cta-actions {
    justify-content: flex-start;
  }
}

.blockchain-faq-section {
  background: #000;
  color: #fff;
  padding: 3rem 0;
}

/* Title */
.faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Card */
.faq-item {
  margin-bottom: 1.2rem;
}

/* Question */
.faq-question {
  width: 100%;
  background: #f3f5fb;
  border-radius: 5px;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

/* Arrow */
.faq-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  background: #f3f5fb;
  color: #333;
  border-radius: 0 0 14px 14px;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 24px 24px;
}

.faq-item.active .faq-arrow {
  transform: rotate(-135deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 30px;
  }
}

.stats-video-wrapper {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.stats-video-wrapper video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.stats-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
}

@media (max-width: 768px) {
  .stats-video-wrapper video {
    height: 260px;
  }
}

@media only screen and (max-width: 480px) {
  /*  */
  .developmen_process_sec {
    margin: 3rem 0 0 0;
  }

  .development_process_sec_head h3 {
    text-align: center;
    font-size: 2rem;
  }

  .development-process .dotted-round.after::after,
  .development-process .dotted-round.before::after {
    border-radius: 20px !important;
  }

  .development-process {
    grid-template-columns: 1fr;
  }

  .development-process .dotted-liner {
    width: 56%;
  }

  .development-process
    .process-card:nth-child(2n):not(:last-child)
    .dotted-liner {
    width: 0 !important;
    left: auto;
  }

  .development-process .process-card:nth-child(3) .dotted-liner.before,
  .development-process .process-card:nth-child(5) .dotted-liner.before {
    width: 0;
  }

  .dotted-round.mob {
    display: block;
  }

  .development-process .dotted-round.lg {
    display: none;
  }

  .development_process_sec_head p {
    margin-bottom: 0;
  }
  .strip-cta__media,
  .quote-icon {
    display: none;
  }

  .strip-cta__inner {
    padding: 1rem;
  }
  .strip-cta__text {
    margin: 0;
  }
  .section-title,
  .stats-title,
  .platform-title,
  .blockchain-cta-box h3,
  .development_process_sec_head h2,
  .testimonialswrap h2,
  .global_pressence h2,
  .heading2,
  .crm-tabs-head h2 {
    font-size: 2rem;
  }

  .crm-nav-tabs {
    width: 100%;
  }

  
  .global_pressence h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .global_pressence {
    padding: 2rem 0;
  }

  .glob_pres_box {
    margin: 0 0 2rem 0;
    padding: 2rem 0 0 0;
  }

  .glob_pres_box .col-lg-1 {
    display: none;
  }

  .glob_pres_box .col-lg-2 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 2rem;
  }

  .glob_pres_box .col-lg-2 img {
    width: 50px;
    height: 50px;
  }

  .glob_pres_box .col-lg-2 h5 {
    font-size: 14px;
  }
  


.service_banner_sec {
  padding:6rem 0 2rem!important;
}
  .service_banner_sec_con h1 {
    font-size: 3rem;
  }

}
.top_banner {
  height: 100%;
  background-repeat: no-repeat;
  background-size: initial;
  background-position: left bottom 0;
  background-image: url(../images/android/android-banner.webp) !important;
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
}

.top_banner h1 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  margin-top: 30px;
}

.top_banner h1 span {
  color: #2490cf;
}

.top_banner p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: normal;
  color: #000;
  line-height: 1.8rem;
}

.top_banner h4 {
  font-size: 1.4rem;
  line-height: normal;
}

.comman_heading h2,
.comman_heading h3 {
  line-height: 44px;
  text-transform: capitalize;
}

.top_banner button {
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-size: 1.3rem;
  align-items: center;
  padding: 10px 1rem;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  color: #000;
  /* Initial text color */
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
  /* Remove underline */
}


.top_banner button span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}



.top_banner img {
  margin: 0 auto;
  padding: 30px 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  width: auto;
  height: 520px;
  display: block;
}

/* banner css end */

/* client css start */
.patner-with {
  padding: 10px 0;
  box-shadow: 0 0 13px #ddd;
}

.patner-with > .container > ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  vertical-align: middle;
  width: 100%;
  text-align: left;
  align-items: center;
}

.patner-with > .container > ul > li {
  display: inline-block;
  line-height: 20px;
  margin: 0 20px;
  width: 100%;
}

.patner-with > .container > ul > li > img {
  cursor: pointer;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.patner-with > .container > ul > li > img:hover {
  filter: saturate(3);
}

/* cliets css end */

/*  */

.about_agency {
  margin: 4rem 0;
}

.about_agency button {
  margin: 0 auto;
  margin-bottom: 2rem;
  display: block;
  padding: 10px 2rem;
  background-color: #fff;
  border-radius: 5px;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.about_agency h2 {
  margin-bottom: 1.4rem;
  color: #0a78be;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}

.about_agency p {
  color: #08223a;
  text-align: justify;
}

.about_agency p a {
  color: #0a78be;
}

.about_agency img {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: auto;
}

/* services sec start */
.services_sec {
  padding: 4rem 0;
  background-color: #eef3ff;
  margin: 4rem 0;
}

.services_para h3,
.services_para h2 {
  font-size: 2.4rem;
  margin-bottom: 0;
  color: #0a78be;
  text-align: center;
  font-weight: 600;
}

.services_para p {
  color: #08223a;
  text-align: center;
}

.inves_box_outer {
  margin-top: 3rem;
}

.invest_box {
  background-color: #fff;
  padding: 20px;
  border: 2px dashed #eef3ff;
  border-radius: 10px;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px 5px 1px #0000000d;
  height: 100%;
}

.invest_box span,
.invest_box:hover {
  background-color: #eef3ff;
  border: 2px dashed #fff;
}

.invest_box:hover {
  color: #fff;
  transform: translateY(6px);
}

.invest_box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  position: absolute;
  top: -29px;
  left: 18px;
}

.weoffer_box::after,
.weoffer_box:nth-child(4n):after {
  position: absolute;
  right: -80px;
  height: 0;
  width: 110px;
  border-radius: 0;
  z-index: -1;
  top: 50%;
  content: "";
}

.invest_box span img {
  max-width: 33px;
}

.invest_box h4,
.invest_box h3,
.invest_box .invest_box_heading {
  margin: 1.3rem 0 0;
  font-weight: 600;
  font-size: 17px;
  color: #08223a;
  padding: 0;
  text-align: start;
}

.invest_box p {
  font-weight: normal;
  font-size: 14px;
  margin: 9px 0 0;
  color: #08223a;
}

.invest_box p b {
  color: #095fa4;
}

/* services section end */

.tele_sol_upper {
  background: #fff;
  margin: 4rem 0;
}

.tele_sol_content h3,
.tele_sol_content h2 {
  margin-bottom: 10px;
  color: #0a78be;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}

.tele_sol_content p {
  color: #08223a;
  text-align: center;
  margin-bottom: 2rem;
}

.tele_solutions {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1.3rem;
}

.tele_solutions img {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  border-radius: 10px;
  padding: 10px;
  width: 2.8rem;
  height: 100%;
  margin-right: 5px;
}

.tele_solutions a {
  color: #000;
  margin-left: 10px;
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0;
}

.tele_sol_upper .middle_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.tele_med_upper {
  margin: 4rem 0;
}

.tele_med_upper h3,
.tele_med_upper h2 {
  margin-bottom: 1.4rem;
  color: #0a78be;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}

.tele_med_sol {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  height: 100%;
  padding: 20px 25px;
  border: 1px solid #dcdcdc8a;
  border-radius: 15px;
  background-color: #fff;
  width: 100%;
  margin: 0 5px 15px;
}

.tele_med_sol img {
  width: 2.6rem;
  height: auto;
}

.tele_med_sol h4,
.tele_med_sol h3 {
  text-align: start;
  font-size: 1rem;
  font-weight: 600;
  color: #08223a;
  line-height: 1.5rem;
  margin: 10px 0;
}

.tele_med_sol p {
  text-align: start;
  color: #000;
  margin-bottom: 0;
}

/*  */
.feature_section {
  margin: 4rem 0;
}

.feature_section .section-head h4,
.feature_section .section-head h3,
.feature_section .section-head h2 {
  margin-bottom: 10px;
  color: #0a78be;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}

.feature_section .section-head p {
  color: #000;
  text-align: center;
  margin-bottom: 2.4rem;
}

.feature_item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  height: 100%;
  -webkit-transition: 0.5s 0;
  transition: 0.5s;
}

.feature_item:hover {
  color: #fff;
  background: #0a78be;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.5s 0;
  transition: 0.5s;
}

.feature_item:hover .feature_item,
.feature_item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: 0.5s 0;
  transition: 0.5s;
}

.feature_item:hover h4,
.feature_item:hover h5,
.feature_item:hover p,
.feature_item:hover p a {
  color: #fff;
  -webkit-transition: 0.5s 0;
  transition: 0.5s;
}

.feature_section .feature_item .icon {
  margin-bottom: 25px;
  color: #0a78be;
  width: 90px;
  display: inline-block;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.feature_item img {
  width: 3.1rem;
  height: auto;
}

.feature_item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.2);
  color: #0a78be;
}

.feature_item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #0a78be;
}

.feature_item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #0a78be;
}

.feature_item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #0a78be;
}

.feature_item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #0a78be;
}

.feature_item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #0a78be;
}

.feature_item p {
  line-height: 26px;
}

.feature_item h5,
.feature_item h3,
.feature_item .feature-heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.feature_item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/*  */
.discover_upper {
  margin: 4rem 0;
}

.discover_content h4,
.discover_content h3 {
  margin-bottom: 5px;
  color: #0a78be;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}

.discover_content p {
  color: #000;
  text-align: center;
  margin-bottom: 2.4rem;
}

.discover_possibilities h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #08223a;
  position: relative;
}

.discover_possibilities h5::after {
  margin-bottom: 10px;
  margin-top: 6px;
  border-bottom: 0;
  position: absolute;
  content: "";
  width: 5.1rem;
  height: 3px;
  background: #1a81ff;
  bottom: -1rem;
  left: 0;
}

.discover_possibilities img {
  width: 100%;
  height: auto;
}

/*  */
.customized_business {
  margin: 4rem 0;
}

.common-heading-section h5,
.common-heading-section h3 {
  margin-bottom: 1.5rem;
  color: #0a78be;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}

.grid-images-block {
  list-style: none;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
}

.grid-images-block li {
  width: calc(25% - 30px);
  margin: 15px;
  float: left;
  position: relative;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.grid-images-block li .grid-main-images {
  height: 250px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

.grid-images-block li .grid-icon-images {
  width: 40px;
  height: auto;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.grid-images-block li h6,
.grid-images-block li p:first-of-type {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  position: absolute;
  margin: 0;
  padding: 100px 30px 30px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 8px;
  transition: 0.5s;
}

.grid-images-block li:hover h6,
.grid-images-block li:hover p:first-of-type {
  background-color: rgba(0, 140, 238, 0.7);
}

.grid-images-block li.bigger,
.sectionTen .next-genlist li {
  width: calc(50% - 30px);
}

.grid-images-block li,
.why-choose-list li,
.wizardform {
  cursor: pointer;
}

.show_services {
  width: 100%;
  height: 100%;
}

.show_services .grid-icon-images,
.show_services h4 {
  position: absolute;
  opacity: 1;
  transition: opacity 0.3s;
}

.show_services .paragraph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.show_services:hover .grid-icon-images,
.show_services:hover h4 {
  opacity: 0;
}

.show_services:hover .paragraph {
  transition: 0.5s ease-in;
  background-color: rgba(30, 79, 110, 0.916);
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  position: absolute;
  line-height: normal;
}

/*  */

/* our development approch start */
.dev_approch {
  overflow: hidden;
  margin: 4rem 0rem;
}

.dev_con_approch {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
}

.dev_con_approch h3 {
  font-weight: 600;
  font-size: 2.5rem;
  color: #0b79be;
  text-align: center;
}

.dev_con_approch p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* .dev_approch .container {
    max-width: 1200px !important
} */

.dev_approch .row > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.function-item {
  padding: 45px 20px 60px;
}

.function-item span {
  display: block;
  height: 80px;
  width: 100px;
  margin: 0 auto;
}

.function1 h3 {
  color: #ae88e8;
}

.function2 h3 {
  color: #7099df;
}

.function3 h3 {
  color: #e89388;
}

.function4 h3 {
  color: #df70dd;
}

.function5 h3 {
  color: #e29b9e;
}

.function-item h3 {
  font-size: 19px;
  line-height: 22px;
  font-weight: 500;
  padding-top: 10px;
}

.function1.function-item:before {
  background: url("https://sisgain.com/assets/images/curve1.webp") top left /
    100% no-repeat;
}

.function2.function-item:before {
  background: url(https://sisgain.com/assets/images/curve2.webp) top left / 100%
    no-repeat;
}

.function3.function-item:before {
  background: url(https://sisgain.com/assets/images/curve3.webp) top left / 100%
    no-repeat;
}

.function4.function-item:before {
  background: url(https://sisgain.com/assets/images/curve4.webp) top left / 100%
    no-repeat;
}

.function-item:before {
  content: "";
  display: block;
  position: absolute;
  width: 450px;
  height: 250px;
  top: 0;
  left: 0;
}
/* faqsection */

.contact_our_expert {
  background-image: url(../images/conatct_expert_sec.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  width: 100%;
  border-radius: 10px;
}

.contact_our_expert h3 {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.contact_our_expert .expert_btn {
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 25px;
  color: #000;
  font-size: 16px;
  margin: 20px auto 0 !important;
  display: block;
}
/* faq section end */
/* our dev approch end */

/* cta section */
.launch-online-inner {
  position: relative;
}

.online-inner-caption {
  width: 70%;
  flex-flow: column;
  justify-content: center;
  position: absolute;
  top: 0;
  text-align: left;
  height: 100%;
  padding: 80px 20px 20px;
  color: #fff;
}

.online-inner-caption button {
  margin-top: 10px;
  padding: 12px 30px;
  /* width: 200px; */
  background-color: #1a81ff;
  color: #fff !important;
  font-weight: 600;
  border-radius: 40px !important;
  text-align: center !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.online-inner-caption h2,
.online-inner-caption p {
  font-weight: 600;
  margin: 10px 0;
  color: #fff;
  font-size: 33px;
}

.online-inner-caption h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.online-inner-caption .btn.btn-main {
  box-shadow: none;
  background: #fff;
  color: #3e0000;
  max-width: 275px;
  font-weight: 600;
}
/* cta section end*/

/* reviewslider */
:root {
  --teal: #1ea3a0;
  --muted: #9aa0a6;
  --bg: #ffffff;
  --card-bg: #fff;
  --shadow: 0 20px 35px rgba(18, 18, 18, 0.06);
  --max-width: 1200px;
}

.testimonialswrap {
  max-width: var(--max-width);
  margin: 2rem auto;
}

.testimonialswrap h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
}

/* Slider frame */
.crm-client-testimonisl-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 70px;
}

.crm-client-testimonisl-slider .slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1);
  will-change: transform;
  align-items: stretch;
}

.crm-client-testimonisl-slider .slide {
  box-sizing: border-box;
  padding: 24px;
  min-width: calc(100% / 3);
  /* default for desktop 3 slides */
  max-width: calc(100% / 3);
  transform: translateZ(0);
  padding-top: 46px;
  display: flex;
}

.crm-client-testimonisl-slider .card {
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Avatar and text layout */
.crm-client-testimonisl-slider .card-inner {
  height: 250px !important;
  align-items: flex-start;
  gap: 22px;
  height: 20px;
  overflow-y: auto;
}

.crm-client-testimonisl-slider .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 72px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

.crm-client-testimonisl-slider .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crm-client-testimonisl-slider .text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  flex: 1;
}

.crm-client-testimonisl-slider .name {
  font-weight: 600;
  font-size: 1rem;
}

.crm-client-testimonisl-slider .role {
  color: var(--muted);
  font-size: 14px;
  /* margin-top: 6px; */
}

/* controls */
.crm-client-testimonisl-slider .controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.crm-client-testimonisl-slider .ctrl-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  color: #333;
}

.crm-client-testimonisl-slider .ctrl-btn:focus {
  outline: none;
}

/* Responsive: 2 slides */
@media (max-width: 991.98px) {
  .crm-client-testimonisl-slider .slide {
    min-width: calc(100% / 2);
    max-width: calc(100% / 2);
  }

  .testimonialswrap h4 {
    font-size: 34px;
  }
}

/* Responsive: 1 slide */
@media (max-width: 767.98px) {
  .crm-client-testimonisl-slider .slide {
    min-width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .crm-client-testimonisl-slider .card {
    padding: 20px;
  }

  .crm-client-testimonisl-slider .avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .testimonialswrap h3 {
    font-size: 26px;
  }
}

.crm-client-testimonisl-slider .text p {
  margin: 0;
  white-space: normal;
}

.crm-client-testimonisl-slider .ctrl-btn {
  user-select: none;
}

/* reviewslider end */
/* review Slider start */
.testimonial-slider {
  padding: 3rem 0;
  background-color: #f9f9f9;
  margin: 4rem 0;
}

.testimonial-title {
  color: #fff;
}

.testimonial-title h5,
.testimonial-title h3 {
  font-weight: 600;
  font-size: 2.5rem;
  color: #0b79be;
  text-align: start;
}

.testimonial-title p {
  color: #000;
}

.carousel-control-prev,
.carousel-control-next {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  top: 60%;
  transform: translateY(-50%);
}

@media (min-width: 576px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 100%;
    display: block;
  }

  .carousel-inner {
    display: flex;
  }
}

@media (min-width: 768px) {
  .carousel-inner {
    padding: 1em;
  }

  .carousel-control-prev,
  .carousel-control-next {
    opacity: 1;
    position: absolute;
    left: 1em;
    top: 80%;
    transform: translateY(-50%);
  }

  .carousel-control-next {
    left: 5em;
  }
}

.thumbnail_image {
  z-index: 3;
  width: 80px;
  height: 80px;
  display: table;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 100%;
  margin-bottom: 1rem;
}

.review_slider {
  margin: 0 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.review_slider p {
  text-align: center;
}

.review_slider h5 {
  color: #0b79be;
  text-align: center;
}

/* review slider end */

/*  */
.weoffer {
  margin: 3rem 0;
}

.comman_heading h3,
.comman_heading h2 {
  font-size: 40px;
  color: #08223a;
  font-weight: 700;
  position: relative;
  margin: 0 0 32px;
}

.comman_heading p {
  font-weight: 500;
  color: #08223a;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 26px;
}

.comman_btn {
  width: 250px;
  font-weight: 600;
  align-items: center;
  background-color: #0a78be;
  border: 2px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  height: 60px;
  justify-content: center;
  line-height: normal;

  padding: 0 1.5rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.comman_btn:after {
  background-color: #0a78be;
  border-radius: 8px;
  content: "";
  display: block;
  height: 60px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.comman_btn:hover:after {
  transform: translate(0, 0);
}

.comman_btn:active {
  color: #0a78be;
  background-color: #fff;
  outline: 0;
}

.comman_btn:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
}

@media (min-width: 768px) {
  .comman_btn {
    padding: 0 40px;
  }
}

.weoffer_outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.weoffer_box {
  cursor: pointer;
  width: 100%;
  max-width: 45%;
  position: relative;
  padding: 30px;
  border-radius: 30px;
  margin: 30px 0;
  background: #0a78be;
  box-shadow: none;
}

.weoffer_box img {
  filter: brightness(20.5);
  max-width: 50px;
}

.weoffer_box h4,
.weoffer_box h3,
.weoffer_box .weoffer_box_heading {
  font-size: 1.2rem;
  color: #fff;
  line-height: normal;
  margin: 0.6rem 0 0.8rem;
  font-weight: 600;
}

.weoffer_box p {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}

.weoffer_box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
}

.weoffer_outer .weoffer_box:first-child::before {
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  top: auto;
  z-index: -1;
}

.weoffer_box::after {
  border-bottom: 3px dashed #0a78be;
}

.weoffer_outer .weoffer_box:first-child::before,
.weoffer_outer .weoffer_box:nth-child(2)::after {
  bottom: -100px;
  width: 0;
  height: 120px;
  border-right: 3px dashed #0a78be;
  border-bottom: 0;
  margin: 0 auto;
}

.weoffer_outer .weoffer_box:nth-child(4)::after {
  right: 0;
  left: 0;
  top: auto;
}

.weoffer_outer .weoffer_box:nth-child(2)::after {
  right: 0;
  left: 0;
  top: auto;
}

.our-key-features {
  background-color: #eef3ff;
  margin: 3rem 0;
  padding: 3rem 0;
}

.our-key-features h3,
.our-key-features h2 {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 2.5rem;
  color: #0b79be;
  text-align: center;
}

.panel-left {
  border-left: 5px solid #f36f26;
}

.panel-right {
  border-right: 5px solid #f36f26;
}

.panel {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.panel-left,
.panel-right {
  border-radius: 35px;
  margin-bottom: 20px;
}

.panel {
  background-color: #fff;
  display: flex;
  align-items: center;
}

.panel .title {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #064c76;
  padding: 15px 25px;
  width: 90%;
}

.panel .icon {
  margin-left: 10px;
  background-color: #3f51b5;
  height: 50px;
  width: 50px;
  border-radius: 30px;
  margin-right: 10px;
  padding: 10px;
}

/*  */

@media only screen and (max-width: 500px) {
  .tele_sol_content h3,
  .tele_sol_content h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .weoffer {
    margin: 2rem 0;
  }

  .comman_heading h3,
  .comman_heading h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
    text-align: center;
    margin-bottom: 5px;
  }

  .comman_heading p {
    text-align: center;
  }

  .weoffer_outer {
    display: block;
  }

  .weoffer_box {
    max-width: 100%;
    width: 100%;
  }

  .weoffer_outer .weoffer_box:first-child::before,
  .weoffer_outer .weoffer_box:nth-child(2)::after,
  .weoffer_box::after {
    display: none;
  }

  .our-key-features h3,
  .our-key-features h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
    text-align: center;
    margin-bottom: 5px;
  }

  .our-key-features {
    margin: 0 0 2rem;
  }

  .panel .icon {
    display: none;
  }

  .panel {
    background-color: #fff;
  }

  .panel-left,
  .panel-right {
    border: none;
  }

  /*  */

  .dev_approch {
    overflow: hidden;
    margin: 2rem 0rem;
  }

  .dev_con_approch {
    width: 100%;
    max-width: 100%;
  }

  .dev_con_approch h3 {
    font-size: 1.5rem;
  }

  .dev_con_approch p {
    margin-bottom: 1rem;
    font-size: 14px;
    color: #000;
  }

  .mobile_res img {
    width: 100%;
    height: auto;
  }

  .top_banner h1 {
    margin-top: 0;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .top_banner p {
    font-size: 1rem;
  }

  .top_banner img {
    display: none;
  }

  .patner-with > .container > ul {
    padding: 0;
    width: 100%;
    display: inline-block;
    text-align: center;
  }

  .patner-with > .container > ul > li {
    display: inline-block;
    margin: 0 10px 10px;
    width: 22%;
  }

  .patner-with > .container > ul > li > img {
    width: 100%;
    filter: none;
    height: auto;
  }

  .hidden-xs {
    display: none !important;
  }

  .about_agency {
    margin: 2rem 0;
  }

  .about_agency h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .about_agency img {
    margin-top: 2rem;
    width: 100%;
    height: auto;
  }

  .services_sec {
    margin: 2rem 0;
    padding: 2rem 0;
  }

  .services_para h3,
  .services_para h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 1rem;
  }

  .tele_sol_upper {
    margin: 2rem 0;
  }

  .tele_sol_upper h3 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 1rem;
  }

  .tele_med_upper {
    margin: 2rem 0;
  }

  .tele_med_upper h3,
  .tele_med_upper h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .feature_section {
    margin: 2rem 0;
  }

  .feature_section .section-head h4,
  .feature_section .section-head h3,
  .feature_section .section-head h2 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .feature_item p {
    margin-bottom: 0px;
  }

  .discover_upper {
    margin: 2rem 0;
  }

  .discover_upper h4 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .discover_possibilities img {
    margin-bottom: 2rem;
  }

  .customized_business {
    margin: 2rem 0;
  }

  .common-heading-section h5,
  .common-heading-section h3 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
  }

  .grid-images-block li,
  .grid-images-block li.bigger,
  .sectionTen .next-genlist li {
    width: calc(100% - 30px);
    margin: 10px 1.2rem;
  }

  .grid-images-block {
    width: 100%;
    margin: 0;
  }

  .grid-images-block li .grid-main-images {
    height: auto;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
  }

  .faq_section h3 {
    font-size: 30px;
    color: #007bff;
    font-weight: 600;
  }

  .faq_sec {
    margin: 2rem 0;
  }

  .faq_sec h4 {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 1rem;
  }

  .testimonial-slider {
    display: none;
  }

  .discover_content h4,
  .discover_content h3 {
    font-size: 1.3rem;
  }
  .launch-online {
    display: none;
  }

  .contact_our_expert h3 {
    font-size: 20px;
    font-weight: 600;
  }
}
.marquee-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Section */
.mcs-section {
    padding: 70px 0;
    background: #f8f9fc;
}

.mcs-header {
    margin-bottom: 50px;
}

.mcs-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.mcs-para {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto 12px;
}

.mcs-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e4e9f2;
    overflow: hidden;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mcs-card.mcs-visible {
    opacity: 1;
    transform: translateY(0);
}

.mcs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.15);
    border-color: #1a73e8;
    background: #1a73e8;
}

.mcs-card:hover .mcs-chain-num {
    color: #fff;
}

.mcs-card:hover .mcs-card-title {
    color: #fff;
}

.mcs-card:hover .mcs-card-desc {
    color: rgba(255,255,255,0.85);
}

.mcs-card:hover .mcs-card-top {
    border-color: rgba(255,255,255,0.2);
}

.mcs-card:hover .mcs-list li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.2);
}

.mcs-card:hover .mcs-list li::before {
    color: #fff;
}

.mcs-card-top {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: border-color 0.3s ease;
}

.mcs-chain-num {
    font-size: 11px;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.mcs-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.mcs-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.mcs-card-body {
    padding: 16px 24px 24px;
}

.mcs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mcs-list li {
    font-size: 13px;
    color: #444;
    padding: 6px 0 6px 16px;
    border-bottom: 1px dashed #f0f0f0;
    position: relative;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.mcs-list li:last-child {
    border-bottom: none;
}

.mcs-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-size: 12px;
    transition: color 0.3s ease;
}

.mcs-custom-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    height: 100%;
    border: 1px solid #e4e9f2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mcs-custom-card.mcs-visible {
    opacity: 1;
    transform: translateY(0);
}

.mcs-custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.15);
    border-color: #1a73e8;
    background: #1a73e8;
}

.mcs-custom-card .mcs-chain-num {
    color: #1a73e8;
    transition: color 0.3s ease;
}

.mcs-custom-card .mcs-card-title {
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.mcs-custom-card .mcs-card-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

.mcs-custom-card:hover .mcs-chain-num {
    color: #fff;
}

.mcs-custom-card:hover .mcs-card-title {
    color: #fff;
}

.mcs-custom-card:hover .mcs-card-desc {
    color: rgba(255,255,255,0.85);
}

.mcs-benefits-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #e4e9f2;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mcs-benefits-card.mcs-visible {
    opacity: 1;
    transform: translateY(0);
}

.mcs-benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.15);
    border-color: #4480cd;
    background: #5f91d2;
}

.mcs-benefits-card .mcs-card-title {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.mcs-benefits-card:hover .mcs-card-title {
    color: #fff;
}

.mcs-benefits-card:hover .mcs-benefits-list li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.2);
}

.mcs-benefits-card:hover .mcs-check {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.mcs-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mcs-benefits-list li {
    font-size: 14px;
    color: #444;
    padding: 9px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.mcs-benefits-list li:last-child {
    border-bottom: none;
}

.mcs-check {
    width: 22px;
    height: 22px;
    background: #e8f4e8;
    color: #2e7d32;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
    .mcs-title { font-size: 24px; }
    .mcs-section { padding: 40px 0; }
    .mcs-custom-card, .mcs-benefits-card { padding: 24px; }
}

.mcs-section {
    position: relative;
    z-index: 0;
    isolation: isolate;
}

.industry-blockchain-section {
    position: relative;
    z-index: 1;
    background: #000 !important;
    isolation: isolate;
}

.blockchain-cta-section {
    position: relative;
    z-index: 1;
    isolation: isolate;
}
.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.industry-img {
    height: 260px;
    overflow: hidden;
    border-radius: 26px;
    background: #111;
}