.bussiness_sec {
  margin: 0 !important;
}
.ott_benefits_sec button {
  padding: 10px 1.4rem;
  font-weight: 500;
  border-radius: 0.6rem;
  box-shadow: 0 10px 30px rgba(1, 178, 255, 0.25);
  margin: 0 auto;
  display: block;
  margin-top: 1rem;
  cursor: pointer;
}

.ott_benefits_sec button:hover {
  background-color: #fff;
  color: #000;
  border: 0;
}
.rpm_features_sec {
  position: relative;
  background-color: #000;
  padding: 2rem 0 4rem 0;
}

.rpm_features_sec h3,
.rpm_features_sec h2,
.rpm_features_sec h4 {
  text-align: center;
  line-height: normal;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.rpm_tab_content h3 {
  margin-bottom: 1rem;
  text-align: start;
  line-height: normal;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.rpm_features_sec p {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.sticky_tab {
  position: sticky;
  top: 8rem;
  /* or another value */
}

.tab_head {
  font-size: 24px;
  margin-bottom: 1rem;
  display: block;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin-left: 1rem;
}

.rpm_tab_nav {
  max-height: 400px;
  overflow-y: scroll;
  /* padding-right: 30px; */
}

.rpm_tab_link {
  margin: 0 1rem 10px;
  font-size: 1.1rem;
  display: block;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  line-height: 26px;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

/* Active state for the currently selected link */
.is_active {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background: #0a78be;
  position: relative;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.rpm_tab_link:hover {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background: #0a78be;
  position: relative;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: Adds a subtle shadow */
}

.rpm_tab_nav::-webkit-scrollbar,
.rpm_right_tabs::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.rpm_tab_nav::-webkit-scrollbar-track,
.rpm_right_tabs::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

/* Handle */
.rpm_tab_nav::-webkit-scrollbar-thumb,
.rpm_right_tabs::-webkit-scrollbar-thumb {
  background: #0a78be;
  border-radius: 10px;
}

.rpm_right_tabs p {
  color: fff;
  text-align: start;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.rpm_right_tabs h4 {
  margin: 2rem 0;
  text-align: start;
  line-height: normal;
  font-size: 2rem;
  color: #fff;

  font-weight: 600;
  text-transform: capitalize;
}

.rpm_right_tabs h5 {
  margin: 1rem 0;
  text-align: start;
  line-height: normal;
  font-size: 1.5rem;
  color: #fff;

  font-weight: 600;
  text-transform: capitalize;
}

.rpm_right_tabs img {
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.rpm_right_tabs ul li,
.rpm_right_tabs ol li {
  color: #fff;
  margin-left: 1rem;
  list-style-type: none;
  margin-top: 15px;
  position: relative;
  padding-left: 1.2rem;
  line-height: 29px;
}

.rpm_right_tabs ul li:before,
.rpm_right_tabs ol li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0a78be;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.rpm_right_tabs ul li strong,
.rpm_right_tabs ol li strong {
  color: #0a78be;
}

/* banner img */
.service_banner_sec {
  background: url("../images/software-development/banner.webp") no-repeat 0 /
    cover;
}

/* vertical tab section start */
.software_vertical_tab_section {
  background-color: #000;
}

.software_vertical_tab_section .top_head_sec {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.software_vertical_tab_section .top_head_sec h2,
.software_vertical_tab_section .top_head_sec h3 {
  font-size: 2rem;
  font-weight: 600;
}

.main-container {
  border-radius: 20px;
  display: flex;
  min-height: 100vh;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
  background: white;
}

.tab-nav {
  width: 300px;
  background: #007bff;
  color: white;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.tab-nav h3 {
  font-size: 1.1rem;
  padding: 15px 20px;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.tab-nav h3:hover,
.tab-nav h3.active {
  background: navy;
  border-left: 4px solid white;
}

.tab-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  position: relative;
}

.tab-pane {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.tab-pane.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 10;
}

.tab-pane h4,
.tab-pane h3,
.tab-pane .h4para {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

.tab-pane ul {
  padding-left: 20px;
}

.tab-pane li {
  margin-bottom: 10px;
}

.tab-content img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 10px;
}

/* vertical tab section end */
/* services slider section start */
.slider_section {
  /* padding: 3rem 0; */
  background-color: #000;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-header {
  text-align: center;
  margin-bottom: 20px;
}

.slider-header h3 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  margin: 1rem 0 1rem 0;
}

.testimonials_head img {
  width: auto;
  height: 50px;
}

.testimonials_head h5,
.testimonials_head h3 {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

.testimonials_head h6 {
  font-size: 1rem;
  font-weight: 500;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 33.33333%;

  padding: 15px;
}

.testimonial-card {
  height: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px 20px 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.testimonial-card p.profession {
  font-size: clamp(12px, 1.5vw, 14px);
  color: #777;
  margin-bottom: 15px;
}

.testimonial-card p.description {
  color: #555;
  margin-top: 1rem;
  text-align: start;
  line-height: 1.5;
  margin-bottom: 10px;
}

.stars {
  text-align: start;
  color: #f5a623;
  font-size: clamp(14px, 1.5vw, 16px);
}

.navigation {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  /* border-radius: 50%; */
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #f5a623;
}

.clientsSliderarrow {
  color: #fff;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  font-size: clamp(20px, 3vw, 30px);
  /* color: #333; */
  cursor: pointer;
  user-select: none;
}

.clientsSliderarrow.left {
  left: 10px;
}

.clientsSliderarrow.right {
  right: 10px;
}

@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }

  .tab-nav {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 0;
  }

  .tab-nav h3 {
    white-space: nowrap;
    padding: 15px 20px;
    border-left: none;
    border-bottom: 4px solid transparent;
  }

  .tab-nav h3:hover,
  .tab-nav h3.active {
    border-left: none;
    border-bottom: 4px solid #ffc107;
  }

  .slide_logo {
    flex: 0 0 33.33%;
    /* Show 3 logos on tablet */
  }

  .slide {
    flex: 0 0 50%;
  }

  .clientsSliderarrow {
    font-size: 24px;
  }

  .slider-header h1 {
    font-size: 28px;
  }
}

/* why choose us section */

.mobile-app-why-choose-sec {
  background-color: #000;
  color: #fff;
  padding: 2rem 0;
}

:root {
  --primary: #4e73df;
  --secondary: #2c3e50;
  --accent: #6c63ff;
  --light: #f8f9fc;
  --dark: #5a5c69;
}

.mobile-app-why-choose-sec .top_head {
  position: relative;
  margin-bottom: 45px;
}

.mobile-app-why-choose-sec .top_head h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 20px;
}

.mobile-app-why-choose-sec .top_head::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #4e73df, #2c3e50);
  border-radius: 2px;
}

.choose-us-card {
  background: var(--secondary);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  /* box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.choose-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.choose-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.choose-us-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(5, 62, 231, 0.27);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
  color: var(--light);
  transition: all 0.3s ease;
}

.choose-us-card:hover .icon {
  background: var(--primary);
  color: white;
}

.choose-us-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 15px;
}

.choose-us-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--light);
}

.cta-section {
  background: var(--secondary);
  padding: 3rem 0;
  border-radius: 15px;
  margin-top: 50px;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* our presence */
.our_presence {
  padding: 1rem 0 3rem 0;
}

.our_presence h3 {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.our_presence .map-img img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.our_presence p {
  text-decoration: none !important;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
}

.our_presence .map_box {
  margin-top: 2rem;
}

.our_presence .city-name:hover {
  color: #00d9ff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }

  .choose-us-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .slide_logo {
    flex: 0 0 50%;
    /* Show 2 logos on mobile */
  }

  .slide {
    flex: 0 0 100%;
  }

  .clientsSliderarrow {
    font-size: 20px;
  }

  .slider-header h1 {
    font-size: 24px;
  }

  .slider-header h4 {
    font-size: 14px;
  }
}

/* client testimonials section */
.testimonials-section {
  width: 100%;
  background: white;
  border-radius: 20px;
  /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 0;
}

.section-header h3 {
  text-align: center;
  line-height: normal;
  font-size: 2.5rem;
  color: #132948;
  font-weight: 700;
  text-transform: capitalize;

  margin-bottom: 0;
}

.section-header h4 {
  font-size: 2rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #4e73df, #2c3e50);
  border-radius: 2px;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial {
  display: none;
  animation: fadeIn 1s ease;
  background: #f9f9ff;
  border-radius: 15px;
  padding: 3rem 5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial.active {
  display: block;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  position: relative;
  /* padding-left: 90px; */
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info {
  margin-left: 10px;
}

.client-info h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 0;
}

.client-info p {
  color: #7e8a9a;
  font-size: 14px;
  margin-bottom: 0;
}

.testimonial-text {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  font-style: italic;
  border-left: 3px solid #4e73df;
  padding-left: 15px;
  margin: 15px 0;
}

.rating {
  color: #ffc107;
  margin-top: 10px;
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.client-dot {
  width: 12px;
  height: 12px;
  background: #d1d9ff;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.client-dot.active {
  background: #4e73df;
  transform: scale(1.3);
}

.client-nav-btn {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: #4e73df;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.client-nav-btn:hover {
  background: #2c3e50;
}

.client-nav-btn.prev {
  right: 7%;
}

.client-nav-btn.next {
  right: 25px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .testimonial-content {
    padding-left: 0;
    padding-top: 80px;
  }

  .client-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .client-nav-btn.prev {
    left: -20px;
  }

  .client-nav-btn.next {
    right: -20px;
  }
}

/* testimonilas us section end*/

/* services slider section end */
@media only screen and (max-width: 500px) {
  .rpm_tab_nav {
    max-height: 100%;
    overflow: hidden;
  }

  .rpm_tab_link {
    color: #fff;
    font-size: 1rem;
    background-color: #3f51b5;
  }

  .rpm_features_sec h3 {
    font-size: 2rem;
    text-align: center;
  }

  .tab_head {
    text-align: center;
    margin: 1rem 0;
  }

  .rpm_features_sec p {
    margin-bottom: 0;
  }

  .rpm_right_tabs h4 {
    font-size: 1.5rem;
  }

  .rpm_right_tabs h5 {
    font-size: 1.2rem;
  }

  /* banner img */
  .service_banner_sec {
    background: rgba(4, 12, 23, 0.7);
  }

  /* */

  .rpm_features_sec {
    padding: 0 0 4rem 0;
  }
  .slider-header h3,
  .telemed_features h3,
  .telemed_features h2,
  .mobile-app-why-choose-sec .top_head h3,
  .cta-section h2,
  .our_presence h3,
  .cta-heading,
  .rpm_features_sec h3,
  .technology_desp h4,
  .section-header h3,
  .rpm_features_sec h2 {
    font-size: 1.5rem !important;
  }
  .ott_benefits_sec {
    padding-bottom: 0;
    margin: 0;
  }
  .telemed_features {
    background-color: #000;
    padding: 2rem 0;
  }
  .telemed_features {
    background-color: #000;
    padding: 2rem 0;
  }
  .our_presence .map_box {
    margin: 2rem 2rem 0;
  }

  .choose-us-card {
    height: auto;
  }
  .choose-us-card p {
    margin-bottom: 0;
  }
  .our_presence {
    padding: 1rem 0 0;
  }

  .testimonial-content,
  .testimonials-section,
  .testimonials-container {
    padding: 0;
  }
  .testimonial {
    padding: 1rem;
  }
  .testimonials-section {
    background: transparent;
    margin: 3rem 0 0 0;
  }
  .client-nav-btn {
    display: none;
  }
}
