/* ========================
   Global Color Variables
======================== */
:root {
  --orange: #EA6E35;
  --black: #1E1E24;
  --dark-grey: #30282B;
  --white: #ffffff;
}

/* ========================
   Base Styles
======================== */
body {
  font-family: "Manrope", sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--orange);
  text-decoration: none;
  transition: 1s;
  font-weight: 500;
}
a:hover {
  color: var(--black);
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
}
.btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}

.btn-outline-secondary {
  border-color: #D3D6E0;
  color: var(--dark-grey);
  font-weight: 500;
  background: #FAFBFF;
  padding: 10px 20px;
  border-radius: 10px;
}
.btn-outline-secondary:hover {
  background-color: var(--dark-grey);
  color: var(--white);
}

.section {
    padding: 80px 0;
}

@media (max-width:768px) {
.section {
    padding: 40px 0;
}
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    font-size: 16px;
    position: relative;
    top: -3px;
}

.slick-dots {
    bottom: -60px;
}


/* Navbar */
.navbar {
  background-color: var(--white) !important;
}
.navbar-nav .nav-link {
  color: var(--black);
  margin-left: 1rem;
  font-weight: 600;
}
.navbar-nav .nav-link:hover {
  color: var(--orange);
}

.navbar-nav li {
    margin: 0 12px;
    padding: 12px 0;
}

.navbar-nav .sub-menu li {
    padding: 0;
}

.navbar-nav li a {
    color: var(--dark-grey);
    font-size: 16px;
    font-weight: 500;
    transition: 1s;
    text-decoration: none;
}

.navbar-nav li a:hover, .navbar-nav li.current-menu-item a {
    color: var(--orange);
}
/* Parent menu items should be relative */
.navbar-nav li {
  position: relative;
}

/* Submenu styles */
.navbar-nav li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;   /* just below parent */
  left: 0;     /* align with parent */
  background: var(--dark-grey);
  padding: 10px 0;
  min-width: 300px; /* fixed px is better than % here */
  border-radius: 6px;
  z-index: 9999;
}

/* Show submenu on hover */
.navbar-nav li:hover > ul.sub-menu {
  display: block;
}

/* Submenu list items */
.navbar-nav li ul.sub-menu li {
  margin: 0;
  display: block;
}

.navbar-nav li ul.sub-menu li a {
  color: var(--white);
  font-size: 14px;
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav li ul.sub-menu li a:hover {
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
}
.navbar-toggler:focus {
	box-shadow: none!important;
}



/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  font-weight: 400;
}


.main-footer {
  background: #32282B;
  color: #fff;
  /* border-radius: 2rem 2rem 0 0; */
  text-align: left;
}
.footer-brand img { height: 41px; }
.footer-desc {
  font-size: 1.09rem;
  color: #dad7da;
  margin-bottom: 1.7rem;
}
.footer-list,
.footer-list li { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.5rem;}
.footer-list li a {
  color: #e0d8de;
  text-decoration: none!important;
  transition: color 0.15s;
  font-weight: 500;
}
.footer-list li a:hover { color: #EA6E35; text-decoration: underline;}
.main-footer h6 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
	  text-decoration: none!important;
}
.main-footer .footer_logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}
.footer-social {
  margin-left: 0.4rem;
  margin-bottom: 2.8rem;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 12px;
  background: #EA6E35;
  color: #fff;
  border-radius: 50%;
  font-size: 1.77rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social-icon:hover { background: #fff; color: #EA6E35; }
.footer-bottom {
  border-top: 1px solid #474047;
  padding-top: 2.1rem;
  color: #c0babf;
  font-size: 0.99rem;
}
.footer-bottom a {
  color: #c0babf;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 400;
}
.footer-bottom a:hover { color: #EA6E35; }
@media (max-width:991px) {
  .main-footer { border-radius: 1.1rem 1.1rem 0 0;}
  .footer-top { flex-direction: column; }
}
@media (max-width:600px) {
  .main-footer .footer-bottom { flex-direction: column; gap: 0.7rem; }
  .footer-social-icon { width: 39px; height: 39px; font-size: 1.3rem;}
  .footer-desc { font-size: 0.98rem;}
}



/* Page.css */

/* Hero Section */
.hero-section {
  /* background-color: #F5F7FC; */
  border-radius: 20px;
  /* margin: 2rem 0; */
  padding: 3rem 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--black);
}

.hero-section .row_bg {
    background-color: #EDEFF7;
    border: 1px solid #EDEFF7;
    border-radius: 40px;
    padding: 80px 40px 80px 40px;
}

.hero-section .left_bg_img {
    height: 500px;
    width: 80%;
    margin: 0 auto;
	object-fit: cover;
}

.hero-title .highlight {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--dark-grey);
  margin: 1.5rem 0;
}

/* Button Styling */
.btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
}

.btn-outline-primary {
  border-color: var(--orange);
  color: var(--orange);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
}
.btn-outline-primary:hover {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-subtitle {
    text-align: center;
  }
  .hero-section .d-flex {
    justify-content: center;
  }

  .services-hero-section .hero-title {
text-align: left;
  }
}


/* slider */

/* RemoAsset Process Section Dark Theme */
.process-section-dark {
  background: #222126;
  /* border-radius: 20px 20px 0 0; */
}
.section-label {
  color: #EA6E35;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.section-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
}
.process-slider {
  margin-top: 2.5rem;
      /* position: relative;
    left: 8%; */
      padding-left: 8%;
  box-sizing: border-box;
}

.process-card-dark, .industry-card {
  background: #222126;
  border-radius: 28px;
  padding: 2.4rem 1.5rem 1.6rem;
  min-height: 350px;
  margin: 0 14px;
  box-shadow: 0 8px 40px rgba(30,30,36,0.09);
  display: flex;
  flex-direction: column;
}
.process-step {
  color: #EA6E35;
  font-weight: 700;
  margin-bottom: 1.4rem;
  font-size: 1.07rem;
}
.process-desc {
  color: #a3a3a7;
  font-size: 1.04rem;
  margin-bottom: 1.1rem;
  min-height: 105px;
}
.process-img-placeholder {
  margin-top: auto;
  background: #fff;
  height: 180px;
  width: 100%;
  border-radius: 22px;
  /* optionally add a faint shadow: */
  box-shadow: 0 4px 30px rgba(30,30,36,0.07);
	object-fit: cover;
}
.process-card-dark h5 { color: #fff; font-size: 1.17rem; }

/* Slick Customization */
.process-slider .slick-slide { display: flex; }

/* Wrapper for positioning */
.process-section-dark .slick-dots, 
.process-section-dark .slick-arrow {
  bottom: -30px;
}

/* Dots outer pill shape */
.process-slider .slick-dots {
  display: inline-flex !important;
  align-items: center;
  padding: 0.2rem 1.1rem;
  background: #3a383d;
  /* background: #fff; */
  border-radius: 22px;
  min-height: 38px;
  gap: 9px;
  border: none;
  box-shadow: none;
  justify-content: center;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  min-width: 110px;
  gap: 11px;
}

.process-slider .slick-dots li {
  width: 12px;
  margin: 0 2px;
      top: 3px;
}

.process-slider .slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;
  opacity: 1 !important;
}
.process-slider .slick-dots li button:before {
  font-size: 1.01rem;
  color: #c3c4ca;
  opacity: 0.5;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a1a1a8;
  transition: background 0.18s;
}
.process-slider .slick-dots li.slick-active button:before {
    background: #e0e1e6;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    top: 2px;
}

/* Custom arrows pill shape+icon */
.process-slider .slick-arrow {
  width: 42px !important;
  height: 42px !important;
  background: #262428 !important;
  color: #bcbabf !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1 !important;
  transition: background .16s, color .16s;
}
.process-slider .slick-arrow.slick-disabled {
  opacity: 0.55 !important;
  pointer-events: none;
}

/* Use SVG chevron arrows instead of font icons for perfect centering */
.process-slider .slick-prev:before, .process-slider .slick-next:before {
  content: "";
  display: block;
  width: 11px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}
.process-slider .slick-prev:before {
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="white" stroke-width="3" viewBox="0 0 18 28" xmlns="http://www.w3.org/2000/svg"><polyline points="13.5,2 4.5,14 13.5,26" stroke="rgb(194,197,210)"/></svg>');
}
.process-slider .slick-next:before {
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="white" stroke-width="3" viewBox="0 0 18 28" xmlns="http://www.w3.org/2000/svg"><polyline points="4.5,2 13.5,14 4.5,26" stroke="rgb(194,197,210)"/></svg>');
}

/* Layout nav block dot + arrows center */
.process-section-dark .slick-slider {
  display: flex;
  flex-direction: column;
}
.process-section-dark .slick-dots, 
.process-section-dark .slick-arrow {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  transform: none !important;
}
.process-section-dark .slick-dots {
    width: 5%;
    justify-content: center;
    margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width:600px) {
  .process-slider .slick-arrow, .process-slider .slick-dots {
    min-height: 35px;
    width: 35px !important;
    height: 35px !important;
    font-size: 1.05rem;
  }
}


@media (max-width:991px) {
  .section-title { font-size: 1.3rem; }
  .process-card-dark, .industry-card { padding: 1.1rem; min-height: 210px;}
  .process-img-placeholder { height:200px; }
}









/* CTA Section Styles */
.cta-section-custom {
  background: #f5f7fc;
}

.cta-section-custom .cta-bg {
  background: var(--orange);
  color: var(--white);
  border-radius: 2rem;
}

.cta-section-custom .cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}

.cta-section-custom .cta-desc {
  font-size: 1.12rem;
  color: #fffbe7;
}

.cta-section-custom .custom-btn-light {
  border-radius: 1rem;
  font-weight: 600;
  color: var(--orange);
  padding: 0.75rem 2.3rem;
  background: #fff;
  border: none;
}

.cta-section-custom .custom-btn-light:hover {
  background: var(--black);
  color: var(--white);
}

.cta-section-custom .custom-btn-outline-light {
  border: 2px solid #fff;
  border-radius: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 0.75rem 2.3rem;
  background: transparent;
}

.cta-section-custom .custom-btn-outline-light:hover {
  background: #fff;
  color: var(--orange);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .cta-section-custom .cta-title {
    font-size: 1.7rem;
  }
  .cta-section-custom .cta-desc {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .cta-section-custom .cta-bg {
    padding: 2rem 1rem;
    border-radius: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-section-custom .cta-title {
    font-size: 1.2rem;
  }
  .cta-section-custom .cta-desc {
    font-size: 0.97rem;
  }
  .cta-section-custom .custom-btn-light, 
  .cta-section-custom .custom-btn-outline-light {
    padding: 0.55rem 1rem;
    font-size: 1rem;
  }
}


/* Features Section */
.featurecards-section {
  background: #fff;
}

.featurecards-section .text-orange {
  color: var(--orange);
}

.featurecards-section h2 {
  font-weight: 600;
  font-size: 2.1rem;
}

.featurecards-section .subtitle {
  color: #84848f;
  font-size: 1.12rem;
}

.feature-card {
  background: #fff;
  border: 2px solid #e9e2db;
  border-radius: 1.3rem;
  padding: 2rem 1.5rem 1.2rem;
  min-height: 250px;
  box-shadow: none;
  transition: box-shadow 0.23s, border-color 0.23s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.feature-card .bg-dark {
  background: #232426 !important;
}
.feature-card .bg-orange,
.feature-card.active .feature-icon {
  background: var(--orange) !important;
}

/* Card text and title */
.feature-card h5 {
  color: #25262c;
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #82828e;
  font-size: 1.01rem;
  margin-bottom: 1.5rem;
  min-height: 44px;
}

.feature-card .feature-underline {
  height: 4px;
  width: 100%;
  background: #232426;
  border-radius: 7px;
  margin-top: auto;
  transition: background 0.22s;
}
.feature-card .feature-underline.orange,
.feature-card.active .feature-underline {
  background: var(--orange);
}

/* Active card style */
.feature-card.active,
.feature-card:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 4px 24px rgba(234, 110, 53, 0.10);
}
.feature-card.active h5,
.feature-card.active .feature-icon,
.feature-card:hover h5,
.feature-card:hover .feature-icon {
  color: var(--orange);
}
.feature-card.active .feature-underline,
.feature-card:hover .feature-underline {
  background: var(--orange);
}

/* Responsive: full width on mobile, grid on desktop */
@media (max-width: 991px) {
  .featurecards-section .row.g-4 {
    row-gap: 2rem;
  }
}

/* Minimum for mobile/avoiding overflow */
@media (max-width: 767px) {
  .feature-card {
    min-height: 180px;
    padding: 1.3rem 1rem;
  }
  .featurecards-section h2 {
    font-size: 1.33rem;
  }
}


/* Why Choose Section */
.whychoose-section { background: #f5f7fc; }
.whychoose-bg {
  background: #e9edf6;
  border-radius: 2rem;
}
.whychoose-img {
  width: 100%;
  min-height: 330px;
  background: #322b2d;
  border-radius: 1rem;
}
.whychoose-title {
  color: #929292;
  font-weight: 700;
  font-size: 2rem;
}
.whychoose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.whychoose-list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bcbabb;
  padding: 1rem 0;
  font-size: 1.13rem;
  color: #232426;
}
.whychoose-list li:last-child {
  border-bottom: none;
}
.whychoose-list .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  margin-right: 0.7rem;
}
.whychoose-list .text-orange { color: var(--orange); }
.whychoose-btn {
  background: var(--orange);
  border-color: var(--orange);
  border-radius: 1rem;
  color: #fff;
  font-weight: 500;
  padding: 0.7rem 2.2rem;
}
.whychoose-btn:hover {
  background: var(--black);
  border-color: var(--black);
}
@media (max-width: 991px) {
  .whychoose-section .whychoose-bg { padding: 2rem 1rem; }
  .whychoose-img { min-height: 200px;}
}
@media (max-width: 767px) {
  .whychoose-title { font-size: 1.15rem; }
  .whychoose-img { min-height: 150px; }
  .whychoose-list li { font-size: 1rem; }
}


/* Total Control Section */
.totalcontrol-section {
  background: #fff;
}

.totalcontrol-section .total-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1E1E24;
}
.totalcontrol-section .text-orange {
  color: #EA6E35;
}
.totalcontrol-section .total-desc {
  color: #6a6a74;
  font-size: 1.08rem;
  font-weight: 400;
}

.totalcard {
  position: relative;
  border-radius: 1.2rem;
  padding: 2.2rem 2rem 1.5rem 1.5rem;
  background: #fff;
  color: #232426;
  box-shadow: 0 4px 32px rgba(30,30,36,0.07);
  border: 1.5px solid #eee;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.total-icon {
/*   display: inline-flex; */
	  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  margin-right: 0.4rem;
  margin-top: -1.4rem;
}
.bg-orange { background-color: #EA6E35 !important; }
.bg-info { background-color: #43a5f4 !important; }
.bg-success { background-color: #3acab4 !important; }
.bg-primary { background-color: #7D4FFE !important; }

.total-label {
  display: inline-block;
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  padding: 2px 13px;
  font-size: 0.88rem;
  font-weight: 600;
  background: #f5e3d5;
  color: #EA6E35;
  border-radius: 0.9em;
  letter-spacing: 0.01em;
  border: 1px solid #f4b184;
}

.totalcard-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1E1E24;
}
.totalcard p {
  color: #30282B;
  font-size: 1.02rem;
  margin-bottom: 1.4rem;
  min-height: 42px;
}

.total-link {
  color: #EA6E35;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
  font-size: 1.06rem;
}
.total-link:hover { color: #1E1E24; }

@media (max-width: 991px) {
  .totalcontrol-section .total-title { font-size: 1.37rem; }
  .totalcard { padding: 1.4rem 1rem; min-height: 180px;}
}
@media (max-width: 767px) {
      .total-icon {
        width: 24px;
        height: 24px;
        position: relative;
        top: 8px;
    }
  .total-label { font-size: 0.85rem; padding: 2px 9px; }
}






.advanced-capabilities-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 135px;
}
.capabilities-bg {
  z-index: 0;
  height: 360px;
  pointer-events: none;
}
.capabilities-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #7c4631;
  letter-spacing: 0.01em;
}
.capabilities-subtitle {
  color: #8c8890;
  font-size: 1.14rem;
  font-weight: 500;
}
.capabilities-device {
    background: #fff;
    box-shadow: 0 2px 18px rgba(30, 30, 36, 0.07);
    height: 380px;
    width: 100%;
	object-fit: cover;
    margin-bottom: 40px !important;
}
.capabilities-slider {
  margin-top: 40px;
}

.capabilities-slider .slick-dots {
      bottom: -35px;
}


.advanced-capabilities-section .slick-dots li { width: 12px; margin: 0 7px;}
.advanced-capabilities-section .slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;
  opacity: 1 !important;
}
.advanced-capabilities-section .slick-dots li button:before {
  font-size: 1.1rem;
  color: #bdbfc6;
  opacity: 0.5;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c8;
  transition: background 0.18s;
}
.advanced-capabilities-section .slick-dots li.slick-active button:before {
  background: #a7adc2;
  opacity: 1 !important;
  width: 12px;
  height: 12px;
}
.advanced-capabilities-section .slick-arrow {
  width: 38px !important;
  height: 38px !important;
  background: #f3f4f8 !important;
  color: #888 !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.advanced-capabilities-section .slick-prev { left: -35px; }
.advanced-capabilities-section .slick-next { right: -35px; }
/* Responsive */
@media (max-width:991px) {
  .capabilities-title { font-size: 1.35rem;}
  /* .capabilities-device { max-width: 340px;} */
}
@media (max-width:600px){
  /* .capabilities-device { max-width: 200px;} */
  .advanced-capabilities-section .slick-arrow, .advanced-capabilities-section .slick-dots { min-height: 32px; width: 32px !important; height: 32px !important;}
}





/* Industries Slider Section */
.industries-section { background: #fff; }
.text-orange { color: #EA6E35; }
.text-dark-grey { color: #82828e; }
.bg-lightblue { background: #e9edf6 !important; }
.industry-card {
  min-width: 320px;
  max-width: 700px;
  background: #e9edf6;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(30,30,36,0.07);
  border: none;
  margin-bottom: 20px;
  min-height: 390px;

}
.industry-label {
  background: #f5e3d5;
  color: #30282B;
  font-size: 0.9rem;
  border-radius: 0.8em;
  padding: 3px 13px;
  font-weight: 500;
  margin-top: -2px;
}
.industry-desc {
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #524c58;
}
.industry-list {
  color: #5d5b70;
  padding-left: 1.15rem;
  margin-bottom: 0;
}
.industries-btn {
  background: #EA6E35;
  border-radius: 1.2rem;
  padding: 0.7rem 2.1rem;
  color: #fff;
  font-weight: 600;
  border: none;
}
.industries-btn:hover { background: #30282B; }
@media (max-width: 991px) {
  .industries-section h2 { font-size: 1.25rem; }
  .industry-card { padding: 1.1rem; min-width: 220px; }
}
@media (max-width: 600px) {
  .industries-slide { flex-direction: column !important; gap: 14px; }
  .industry-card { border-radius: 1.1rem;}
}
.slick-dots li button:before { color: #EA6E35 !important; font-size:1rem; }

.industries-slider {
        /* position: relative;
    left: 8%; */
         padding-left: 8%;
  box-sizing: border-box;
}


/* Slick Customization */
.industries-slider .slick-slide { display: flex; }

/* Wrapper for positioning */
.process-section-dark .slick-dots, 
.process-section-dark .slick-arrow {
  bottom: -30px;
}

/* Dots outer pill shape */
.industries-slider .slick-dots {
  display: inline-flex !important;
  align-items: center;
  padding: 0.2rem 1.1rem;
  background: #3a383d;
  /* background: #fff; */
  border-radius: 22px;
  min-height: 38px;
  gap: 9px;
  border: none;
  box-shadow: none;
  justify-content: center;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  min-width: 110px;
  gap: 11px;
}

.industries-slider .slick-dots li {
  width: 12px;
  margin: 0 2px;
      top: 3px;
}

.industries-slider .slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;
  opacity: 1 !important;
}
.industries-slider .slick-dots li button:before {
  font-size: 1.01rem;
  color: #c3c4ca;
  opacity: 0.5;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a1a1a8;
  transition: background 0.18s;
}
.industries-slider .slick-dots li.slick-active button:before {
    background: #e0e1e6;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    top: 2px;
}

/* Custom arrows pill shape+icon */
.industries-slider .slick-arrow {
  width: 42px !important;
  height: 42px !important;
  background: #262428 !important;
  color: #bcbabf !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1 !important;
  transition: background .16s, color .16s;
}
.industries-slider .slick-arrow.slick-disabled {
  opacity: 0.55 !important;
  pointer-events: none;
}

/* Use SVG chevron arrows instead of font icons for perfect centering */
.industries-slider .slick-prev:before, .industries-slider .slick-next:before {
  content: "";
  display: block;
  width: 11px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}
.industries-slider .slick-prev:before {
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="white" stroke-width="3" viewBox="0 0 18 28" xmlns="http://www.w3.org/2000/svg"><polyline points="13.5,2 4.5,14 13.5,26" stroke="rgb(194,197,210)"/></svg>');
}
.industries-slider .slick-next:before {
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="white" stroke-width="3" viewBox="0 0 18 28" xmlns="http://www.w3.org/2000/svg"><polyline points="4.5,2 13.5,14 4.5,26" stroke="rgb(194,197,210)"/></svg>');
}


/* Responsive tweaks */
@media (max-width:600px) {
  .industries-slider .slick-arrow, .industries-slider .slick-dots {
    min-height: 35px;
    width: 35px !important;
    height: 35px !important;
    font-size: 1.05rem;
  }
}

.cta-dark-section {
  background: #f5f7fc;
}
.cta-dark-bg {
  background: #32282B; /* or use var(--dark-grey) if already defined */
  border-radius: 2.3rem;
}
.cta-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}
.cta-desc {
  color: #fff;
  font-size: 1.12rem;
}
.cta-btn-orange {
  background: #EA6E35;
  color: #fff;
  border: 0;
  border-radius: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.7rem;
  font-size: 1.19rem;
  border: 1px solid #EA6E35;
}
.cta-btn-orange:hover {
  background: #fff;
  color: #EA6E35;
  border: 1px solid #EA6E35;
}
.cta-btn-outline {
  background: transparent;
  color: #EA6E35;
  border: 1.7px solid #EA6E35;
  border-radius: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.7rem;
  font-size: 1.19rem;
}
.cta-btn-outline:hover {
  background: #EA6E35;
  color: #fff;
}
@media (max-width: 991px) {
  .cta-title { font-size: 1.5rem; }
  .cta-desc { font-size: 1.07rem; }
}
@media (max-width: 600px) {
  .cta-dark-bg { padding: 2.1rem 1rem; border-radius: 1.1rem; }
  .cta-title { font-size: 1.1rem; }
  .cta-btn-orange,
  .cta-btn-outline { padding: 0.63rem 1.2rem; font-size: 0.99rem; }
}


.testimonials-section { background: #fff; }
.testimonials-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #251e22;
}
.testimonials-subtitle {
  font-size: 1.18rem;
  color: #8a8890;
  font-weight: 500;
}
.testimonial-card {
  background: #f0f0f4;
  border-radius: 1.7rem;
  box-shadow: none;
  transition: box-shadow .23s, background .20s;
  min-height: 220px;
  padding: 1.6rem 1rem 1.6rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.testimonial-img-wrap {
  /* width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 160px;
  margin-bottom: 2rem; */
}
.testimonial-img {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e0e0e3;
  margin: auto;
}
.testimonial-info {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 2rem;
    color: #27262C;
    text-align: left;
    margin: 5px 10px;
    background: #ffffff9c;
    padding: 0 10px;
	
}
.testimonial-name { font-size: 1.25rem; font-weight: 600; }
.testimonial-role { font-size: 1.01rem; color: #929292; }
.testimonial-quote {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(50,40,43,0.09);
  color: #232426;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 2.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2;
  transition: opacity .24s cubic-bezier(.5,.13,.37,1), visibility .21s;
}
.testimonial-quote-icon {
  font-size: 2.46rem;
  color: #232426;
  margin-bottom: 1.1rem;
}
.testimonial-quote .testimonial-name,
.testimonial-quote .testimonial-role { text-align: left; }
.testimonial-quote .testimonial-role { color: #929292; }
.testimonial-card:hover .testimonial-quote,
.testimonial-card.hovered .testimonial-quote {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.testimonial-card:hover .testimonial-img-wrap,
.testimonial-card:hover .testimonial-info,
.testimonial-card.hovered .testimonial-img-wrap,
.testimonial-card.hovered .testimonial-info {
  opacity: 0 !important; visibility: hidden;
}
/* Always-on for mobile (accessibility + UX) */
@media (max-width: 767px) {
  .testimonial-card .testimonial-quote,
  .testimonial-card .testimonial-img-wrap,
  .testimonial-card .testimonial-info {
    opacity: 1 !important; visibility: visible !important;
    position: static !important;
    pointer-events: auto !important;
    display: block;
  }
}
.testimonials-all-btn {
  padding: 0.57rem 2.5rem;
  font-size: 1.13rem;
  background: #f6f6fa;
  color: #55596a;
  font-weight: 600;
  border-radius: 0.9rem;
  border: none;
  box-shadow: none;
}
.testimonials-all-btn:hover {
  background: #ea6e35;
  color: #fff;
}



.faq-section { background: #fff; }
.text-orange { color: #EA6E35; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1.5px solid #f0f0f5;
}
.faq-item.open .faq-question {
  color: #EA6E35;
}
.faq-question {
  font-size: 1.24rem;
  font-weight: 500;
  color: #232426;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  transition: color 0.16s;
}
.faq-question:hover { color: #EA6E35; }
.faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #232426;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.15s, transform 0.26s;
}
.faq-item.open .faq-toggle {
  color: #EA6E35;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  font-size: 1.07rem;
  color: #49455d;
  background: #fafbfc;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  padding: 1rem 1rem;
  animation: fadeInFaq 0.4s;
}
.faq-item.open .faq-answer { display: block; }

@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px);}
  to { opacity: 1; transform: none; }
}







/* services */

/* Why Smart IT Asset Management Matters */
.services-stats-section {
  background: #f9fafc; /* subtle light background */
  padding: 60px 0;
}

.services-stats-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.services-stats-section .result-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 20px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-stats-section .result-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.services-stats-section .result-box h5 {
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.services-stats-section .result-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-grey);
  margin: 0;
}


.services-features-slider-section {
	 background: #f8fafc;
	 padding: 3rem 0;
}

 .services-features-slider-section h2 {
	 color: #1a202c;
	 font-weight: 700;
	 margin-bottom: 2rem;
}
 .services-features-slider-section .feature-card {
	 background: #fff;
	 border-radius: 12px;
	 box-shadow: 0 4px 12px rgba(32, 32, 71, 0.08);
	 padding: 2rem 1.2rem;
	 transition: box-shadow 0.2s, transform 0.2s;
	 height: 100%;
	 display: flex;
	 flex-direction: column;

}

.customer_stories .feature-card {
         margin: 0 20px;
}
 .services-features-slider-section .feature-card:hover {
	 box-shadow: 0 6px 22px rgba(32, 32, 71, 0.14);
	 /* transform: translateY(-6px) scale(1.02); */
}
 .services-features-slider-section .feature-card__title {
	 color: #2451e6;
	 font-size: 1.2rem;
	 font-weight: 600;
	 margin-bottom: 1.2rem;
	 text-align: left;
}
 .services-features-slider-section .feature-card__list {
	 padding-left: 1.4rem;
	 color: #4a5568;
	 font-size: 1rem;
}
 .services-features-slider-section .feature-card__list li {
	 margin-bottom: 0.6rem;
	 line-height: 1.5;
}
 .services-features-slider-section .feature-card__list li:last-child {
	 margin-bottom: 0;
}
 @media (max-width: 767px) {
	 .feature-card {
		 padding: 1.2rem 0.8rem;
	}
}
 

.services-process-section-dark {
	 background: #181c26;
	 padding: 3rem 0;
}

 .services-process-section-dark h2 {
	 color: #fff;
	 font-weight: 700;
	 margin-bottom: 2rem;
	 text-align: center;
}
 .services-process-section-dark .row {
        margin-bottom: 20px;
}
 .services-process-section-dark .process-step-card {
	 background: #23263a;
	 border-radius: 16px;
	 box-shadow: 0 3px 20px rgba(15, 20, 40, 0.17);
	 padding: 2rem 1.2rem;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 height: 100%;
	 min-width: 180px;
	 transition: box-shadow 0.18s, transform 0.18s;
	 position: relative;
}
 .services-process-section-dark .process-step-card:hover {
	 box-shadow: 0 8px 28px rgba(15, 20, 40, 0.32);
	 transform: translateY(-6px) scale(1.04);
}
 .services-process-section-dark .process-step-card .step-number {
	 background: linear-gradient(90deg, #ff8a00, #ffcd00);
	 color: #fff;
	 font-size: 1.6rem;
	 font-weight: 700;
	 width: 48px;
	 height: 48px;
	 border-radius: 50%;
	 margin-bottom: 1rem;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .services-process-section-dark .process-step-card .step-title {
	 color: #fff;
	 font-size: 1.1rem;
	 font-weight: 600;
	 margin-bottom: 0.7rem;
}
 .services-process-section-dark .process-step-card .step-desc {
	 color: #e1e1ef;
	 font-size: 0.98rem;
	 line-height: 1.45;
	 margin-bottom: 0;
	 width: 100%;
}
/* Responsive adjustment for mobile */
 @media (max-width: 768px) {
	 .services-process-section-dark .row {
		 flex-direction: column;
		 gap: 1.2rem;
	}
	 .process-step-card {
		 min-width: auto;
		 padding: 1.4rem 0.7rem;
	}
}
 


.services-results-section {
	 padding: 3rem 0;
	 background: #fff;
	 color: #1a202c;
	 text-align: center;
}
 .services-results-section h2 {
	 font-weight: 700;
	 margin-bottom: 2rem;
}

 .services-results-section .result-box {
	 background: #fdf6f0;
	 border-radius: 15px;
	 padding: 2rem 1.5rem;
	 box-shadow: 0 4px 14px rgba(255, 130, 50, 0.15);
	 flex: 1 1 250px;
	 /* max-width: 320px; */
	 transition: box-shadow 0.3s ease, transform 0.3s ease;
	 cursor: default;
         min-height: 165px;
}
 .services-results-section .result-box:hover {
	 box-shadow: 0 8px 28px rgba(255, 130, 50, 0.3);
	 transform: translateY(-6px);
}
 .services-results-section .result-box .result-number {
	 font-size: 3.8rem;
	 color: #ff8222;
	 font-weight: 700;
	 margin-bottom: 0.6rem;
	 line-height: 1;
}
 .services-results-section .result-box .result-label {
	 font-size: 1.15rem;
	 font-weight: 500;
	 color: #4a5568;
}
 @media (max-width: 768px) {
	 .services-results-section .result-box {
		 max-width: 100%;
		 margin-bottom: 1.5rem;
	}
}
 

.services-integration-section {
	 padding: 3rem 0;
	 background: #fff;
	 color: #333;
	 text-align: center;
}
 .services-integration-section h2 {
	 font-weight: 700;
	 margin-bottom: 1rem;
	 font-size: 2rem;
}
 .services-integration-section p {
	 color: #666;
	 font-size: 1rem;
	 margin-bottom: 2rem;
}
 .services-integration-section p a {
	 color: #ff8222;
	 text-decoration: none;
	 font-weight: 600;
}
 .services-integration-section p a:hover {
	 text-decoration: underline;
}
 .services-integration-section .integration-logo {
	 max-width: 100%;
	 max-height: 60px;
	 filter: grayscale(70%);
	 transition: filter 0.3s ease, transform 0.3s ease;
	 cursor: pointer;
}
 .services-integration-section .integration-logo:hover {
	 filter: grayscale(0);
	 transform: scale(1.1);
}


.services-process-section-dark {
	 background-color: #181c26;
	 padding: 3rem 0;
	 text-align: center;
	 color: white;
}

 .services-process-section-dark h2 {
	 font-size: 2rem;
	 font-weight: 700;
	 margin-bottom: 1.5rem;
}
 .services-process-section-dark ul {
	 list-style: none;
	 padding: 0;
	 font-size: 1.25rem;
	 line-height: 1.8;
	 color: #f0f0f0;
}
 .services-process-section-dark ul li {
	 margin-bottom: 1rem;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	/* Emoji spacing */
}
 .services-process-section-dark ul li::before {
	 content: '';
	 display: inline-block;
	 width: 1.6em;
}
 

.risk-grid-section {
	 background: #f9fafb;
}
 .risk-grid-section h2 {
	 font-weight: 700;
}
 .risk-grid-section .risk-box {
	 background: #fff7f3;
	 border: 1.5px solid #ffedd5;
	 border-radius: 16px;
	 box-shadow: 0 6px 14px rgba(255, 130, 34, 0.06);
	 transition: box-shadow 0.3s ease;
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
}
 .risk-grid-section .risk-box:hover {
	 box-shadow: 0 10px 28px rgba(255, 130, 34, 0.14);
}
 .risk-grid-section .risk-box .risk-icon {
	 font-size: 2.8rem;
	 color: black;
}
 .risk-grid-section .risk-box .risk-title {
	 color: #fa7e25;
	 font-size: 1.25rem;
	 margin-bottom: 0.4rem;
}
 .risk-grid-section .risk-box .risk-desc {
	 font-size: 1rem;
	 color: #1a202c;
	 line-height: 1.4;
}
 

.why-choose-rem-section {
	 background: #fcfcfc;
}
 .why-choose-rem-section h2 {
	 font-weight: 700;
}
 .why-choose-rem-section .lead {
	 color: #666;
	 margin-bottom: 2rem;
}
 .why-choose-rem-section .choose-card {
	 background: #fff7f3;
	 border: 1.5px solid #ffedd5;
	 border-radius: 16px;
	 box-shadow: 0 6px 14px rgba(255, 130, 34, 0.07);
	 transition: box-shadow 0.3s;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: center;
}
 .why-choose-rem-section .choose-card:hover {
	 box-shadow: 0 12px 32px rgba(255, 130, 34, 0.15);
}
 .why-choose-rem-section .choose-card .choose-icon {
	 font-size: 2.3rem;
	 color: #212121;
}
 .why-choose-rem-section .choose-card .choose-title {
	 font-size: 1.18rem;
	 color: #de7824;
	 margin-bottom: 0.5rem;
}
 .why-choose-rem-section .choose-card .choose-desc {
	 font-size: 1rem;
	 color: #1a202c;
}
 





.demo-form-section {
	 background: #f8f9fb;
	 padding: 3rem 0;
}
 .demo-form-section .wpcf7-form .row {
	 max-width: 600px;
	 margin: 0 auto;
}
 .demo-form-section .form-control {
	 border-radius: 8px;
	 border: 1.5px solid #d6e1ed;
	 font-size: 1.1rem;
	 padding: 0.75rem 1rem;
	 margin-bottom: 8px;
	 background: #fff;
	 color: #222;
	 transition: border-color 0.2s;
}
 .demo-form-section .form-control:focus {
	 border-color: #ff8222;
	 box-shadow: 0 1px 8px rgba(255, 130, 34, 0.08);
}
 .demo-form-section .btn-primary {
	 background: #ff8222;
	 border: none;
	 border-radius: 8px;
	 padding: 0.75rem 1rem;
	 font-size: 1.15rem;
	 font-weight: 700;
	 width: 100%;
	 transition: background 0.2s;
}
 .demo-form-section .btn-primary:hover {
	 background: #e66e15;
}
/* Responsive for very small screens */
 @media (max-width: 575.98px) {
	 .demo-form-section .row > [class^='col-'] {
		 flex: 0 0 100%;
		 max-width: 100%;
	}
}
 











.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.modal-content {
  background: white;
  border-radius: 10px;
  padding: 3rem 2rem 0 2rem;
  max-width: 45%;
  width: 95%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
    right: 10px;
    top: -5px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ff8222;
}




/* Hero Section */
.solution-hero-section {
  position: relative;
  padding: 8rem 1rem;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.solution-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5); /* dark overlay for readability */
  z-index: 1;
}

.solution-hero-section .container {
  position: relative;
  z-index: 2;
}

.solution-hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
	color: white;
  margin-bottom: 1rem;
}

.solution-hero-section .solution-intro {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}


/* Content Section */
.solution-content-section {
  padding: 4rem 1rem;
}
.solution-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}
.solution-content h2,
.solution-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}














/* Responsive */
@media (max-width: 768px) {
.hero-section {
padding: 0 !important;
}
.hero-section .row_bg {
    border-radius: 0;
    padding: 40px 20px 40px 20px;
}

.hero-section .left_bg_img {
    height: auto;
    width: 100%;
}
.process-slider {
    padding-left: 0;
}
.capabilities-bg {
    display: none;
}

    .capabilities-device {
        height: auto;
    }

    .capabilities-slider .slick-dots {
    display: none;
}

.industries-slider {
    padding-left: 0;
}

.services-results-section .result-box {

    min-height: auto;
}


.modal-content {
    max-width: 85%;
}

.navbar {
    padding-bottom: 30px;
}
	
	/* Ensure slick slider doesn't cause horizontal scroll */
.customer_stories .slick-slider {
  overflow: hidden;
}

.customer_stories .slick-list {
  overflow: hidden;  /* container for slick-track */
}

.customer_stories .slick-track {
  display: flex !important;    /* helps prevent weird spacing */
  align-items: stretch;        /* keeps slides aligned */
}


}

.blog-content {
  word-wrap: break-word;      /* For older browsers */
  overflow-wrap: break-word;  /* Standard modern property */
  white-space: normal;        /* Prevents long single lines */
  max-width: 100%;            /* Ensure it doesn’t exceed container */
  line-height: 1.6;           /* Improves readability */
}

.feature-card .feature-icon i {
	    position: relative;
    top: -3px;
}

.benefit-card {
    background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
