:root {
  --m-sidebar-bg: #021336;
  --m-sidebar-hover: #004d7a;
  --m-sidebar-active: #002d47;
  --m-text-main: #003b5c;
  --m-accent-yellow: #ffc107;
  --m-border-color: rgba(255, 255, 255, 0.1);
  --m-font-family: 'Inter', sans-serif;
}

body {
  font-family: var(--m-font-family);
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.m-app-container {
  display: flex;
  position: relative;
}

.m-sidebar {
  width: 320px;
  background-color: var(--m-sidebar-bg);
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 100;
}
.technology-section-wrapper {
  margin: 40px auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .technology-section-wrapper {
    margin: 10px 0;
  }
}
.m-sidebar-header-mobile {
  display: none;
  padding: 1.25rem 1.5rem;
  background-color: var(--m-sidebar-active);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--m-border-color);
}

.m-sidebar-nav-container {
  display: block;
}

.m-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-sidebar-item {
  display: flex;
  align-items: center;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--m-border-color);
  cursor: pointer;
  text-decoration: none;
  color: white;
  position: relative;
}

.m-sidebar-item:hover {
  background-color: var(--m-sidebar-hover);
  color: white;
}

.m-sidebar-item.active {
  background-color: var(--m-sidebar-active);
}

.m-sidebar-item.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fafafa;
  z-index: 10;
}

.m-sidebar-icon {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  opacity: 0.9;
}

.m-category-content {
  display: none;
}

.m-category-content.active {
  display: block;
}

.m-sidebar-text {
  font-size: 1rem;
  font-weight: 500;
}

.m-main-content {
  flex: 1;
  padding: 2rem 2rem 2rem 2rem;
  background-color: white;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.m-content-header {
  margin-bottom: 2.5rem;
}

.m-service-title {
  color: var(--m-text-main);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
}

.m-service-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background-color: var(--m-accent-yellow);
  margin: 8px auto 0;
}

.m-service-description {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.m-tech-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.m-tech-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-right: 1px dashed #ddd;
}

.m-tech-logo {
  height: 60px;
  width: 140px;
  object-fit: contain;
}

.m-tech-logos {
  height: 110px;
  width: 150%;
  object-fit: contain;
}

#m-mobileContent {
  background: transparent;
}

.m-bootstrap-row {
  display: flex;
  justify-content: center;
}

.m-expert-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background-color: #0077b6;
  color: white;
  padding: 1.5rem 0.75rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: 500;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-expert-tab i {
  transform: rotate(90deg);
}

@media (max-width: 1200px) {
  .m-tech-item:nth-child(3n) {
    border-right: none;
  }

  .m-tech-item:nth-child(4n) {
    border-right: 1px dashed #ddd;
  }
}

@media (max-width: 991px) {
  .m-tech-item:nth-child(2n) {
    border-right: none;
  }

  .m-tech-item:nth-child(3n) {
    border-right: 1px dashed #ddd;
  }
}

@media (min-width: 1400px) {
  .m-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 990px) {
  .m-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .m-sidebar {
  width: 270px;
  background-color: var(--m-sidebar-bg);
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 100;
}
}

@media (max-width: 768px) {
  .m-app-container {
    flex-direction: row;
    position: relative;
    
  }

  .m-sidebar {
    width: 100px; 
    background-color: var(--m-sidebar-bg);
    height: auto; 
   
    left: 0;
    top: 0;
    overflow-y: auto;
  }

  .m-sidebar-header-mobile {
    display: none; 
  }

  .m-sidebar-list {
    display: flex;
    flex-direction: column;
    
  }

  .m-sidebar-item {
    padding: 1rem 0;
    justify-content: center;
    border-bottom: 1px solid var(--m-border-color);
  }

  .m-sidebar-item-header {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .m-sidebar-icon {
    width: 25px;
    height: 24px;
    margin-right: 0; 
  }

  .m-sidebar-text {
    display: none;
  }

  .m-main-content {
    display: block;
    background-color: white;
  }

  .m-category-content {
    display: none;
  }

  .m-category-content.active {
    display: block;
  }

  #m-mobileContent {
    display: none;
  }

  .m-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }

  .m-tech-item {
    border-right: none;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0.25rem;
  }

  .m-tech-logo {
    height: 40px;
    width: auto;
    max-width: 100px;
  }
  .m-tech-logos {
    height: 70px;
    width: auto;
    max-width: 120px;
  }

  .m-service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
  }

  .m-service-description {
    font-size: 0.95rem;
    margin: 1rem auto 2rem;
    padding: 0 1rem;
  }

  .m-bootstrap-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .m-bootstrap-row .m-tech-item {
    flex: 0 0 auto;
  }

  .m-sidebar-item.active::after {
    display: none;
  }

  .m-sidebar-item.active {
    background-color: var(--m-sidebar-active);
    position: relative;
  }
}

@media (max-width: 480px) {
  .m-sidebar {
    width: 80px;
    height: auto;
  }

  .m-main-content {
    width: calc(100% - 80px);
    padding: 1rem 0.5rem;
  }

  .m-sidebar-icon {
    width: 25px;
    height: 22px;
  }

  .m-sidebar-text {
    display: none;
  }
  
  .m-tech-logo {
    height: 30px;
    width: 90%;
    max-width: 100px;
  }

  .m-tech-logos {
    height: 70px;
    width: auto;
    max-width: 120px;
  }

  .m-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }

  .m-tech-item {
    border-right: none;
    margin: 0;
  }

  .m-bootstrap-row {
    flex-direction: column;
    align-items: center;
  }

  .m-service-title {
    font-size: 1.25rem;
  }

  .m-service-description {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}

#m-mobileContent {
  display: none;
}



/* Workflow Section Styles */
.workflow-section {
    font-family: "Inter", sans-serif;
    background-color: white;
    color: #333;
}

.workflow-section .step-title {
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
}

.workflow-section .step-desc {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 15px;
}

.workflow-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6366f1;
}

.workflow-section .workflow-card-wrapper {
    position: relative;
    padding: 10px;
    transition: transform 0.3s ease;
    max-width: 240px;
    margin: 0 auto;
}

.workflow-section .workflow-card-wrapper:hover {
    transform: translateY(-10px);
}

.workflow-section .card-outer-ring {
    padding: 3px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 40px 40px 120px 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.workflow-section .card-inner-body {
    background: white;
    border-radius: 37px 37px 117px 117px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 20px 10px 0 10px;
    z-index: 1;
}

.workflow-section .step-number-pill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    border-radius: 50px;
    clip-path: ellipse(80% 100% at 50% 100%);
}

.workflow-section .icon-box {
    font-size: 2rem;
    color: #444;
    margin-bottom: 10px;
}

.workflow-section .v1 {
    background: linear-gradient(to right, #60a5fa, #8b5cf6);
}

.workflow-section .v2 {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.workflow-section .v3 {
    background: linear-gradient(to right, #f43f5e, #f97316);
}

.workflow-section .v4 {
    background: linear-gradient(to right, #f97316, #eab308);
}

.workflow-section .v5 {
    background: linear-gradient(to right, #eab308, #22c55e);
}

.workflow-section .v6 {
    background: linear-gradient(to right, #22c55e, #06b6d4);
}

.workflow-section .ring-v1{
   background: white;
}
.workflow-section .ring-v2{
   background: white;
}
.workflow-section .ring-v3{
   background: white;
} 
.workflow-section .ring-v4{
   background: white;
}
.workflow-section .ring-v5{
   background: white;
}
.workflow-section .ring-v6 {
    background: white;
}

.workflow-section .card-outer-ring::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 42px 42px 122px 122px;
    border: 3px solid transparent;
}

.workflow-section .ring-v1::before {
    border-color: #60a5fa;
}

.workflow-section .ring-v2::before {
    border-color: #8b5cf6;
}

.workflow-section .ring-v3::before {
    border-color: #f43f5e;
}

.workflow-section .ring-v4::before {
    border-color: #f97316;
}

.workflow-section .ring-v5::before {
    border-color: #eab308;
}

.workflow-section .ring-v6::before {
    border-color: #22c55e;
}

.workflow-section .arrow-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    display: none;
}

@media (min-width: 992px) {
    .workflow-section .arrow-desktop-only {
        display: flex;
    }
    .workflow-section .arrow-right {
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        width: 60px;
    }
    .workflow-section .arrow-left {
        top: 50%;
        left: -30px;
        transform: translateY(-50%) rotate(180deg);
        width: 60px;
    }
    .workflow-section .arrow-down-connector {
        bottom: -50px;
        right: 50%;
        transform: translateX(50%);
        height: 60px;
    }
}
@media (min-width: 500px) and (max-width:768px){
 .workflow-section .m-work {
        margin-bottom: 40px;
    }
}

@media (min-width: 500px) and (max-width: 991px) {
    .workflow-section .col-custom-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .workflow-section .workflow-card-wrapper {
        max-width: 220px;
        margin: 15px auto;
    }
    
    .workflow-section .card-inner-body {
        min-height: 250px;
        padding: 18px 12px 0 12px;
    }
    
    .workflow-section .step-title {
        font-size: 0.85rem;
        margin-top: 6px;
    }
    
    .workflow-section .step-desc {
        font-size: 0.7rem;
        margin-bottom: 10px;
        padding: 0 4px;
    }
    
    .workflow-section .icon-box {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .workflow-section .step-number-pill {
        height: 60px;
        font-size: 1.8rem;
    }
    
    .workflow-section .arrow-tablet-only {
        display: flex;
    }
    
    .workflow-section .arrow-tablet-right {
        top: 50%;
        right: -25px;
        transform: translateY(-50%);
        width: 50px;
    }

    .workflow-section .arrow-reverse {
        right: -25px;
        left: auto;
        transform: translateY(-50%) rotate(180deg);
    }
    
    .workflow-section .arrow-tablet-down {
        bottom: -45px;
        right: 50%;
        transform: translateX(50%);
        height: 50px;
    }
    .workflow-section .step-number-pill.v3 {
        font-size: 0;
    }

    .workflow-section .step-number-pill.v3::after {
        content: "03";
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .workflow-section .step-number-pill.v4 {
        font-size: 0;
    }

    .workflow-section .step-number-pill.v4::after {
        content: "04";
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .workflow-section .row {
        margin-bottom: 20px;
    }
    
    
    .workflow-section [class*="col-"]:nth-child(odd) .arrow-tablet-right {
        display: flex;
    }
    
    .workflow-section [class*="col-"]:nth-child(even) .arrow-tablet-down {
        display: flex;
    }
}

@media (max-width: 500px) {
    .workflow-section .workflow-card-wrapper {
        max-width: 250px;
        margin: 10px auto;
    }
    
    .workflow-section .card-inner-body {
        min-height: 220px;
        padding: 15px 10px 0 10px;
    }
    
    .workflow-section .step-title {
        font-size: 0.9rem;
        margin-top: 8px;
    }
    
    .workflow-section .step-desc {
        font-size: 0.75rem;
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .workflow-section .icon-box {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .workflow-section .step-number-pill {
        height: 65px;
        font-size: 1.9rem;
    }
}

.workflow-section .mobile-arrow-spacer {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}





