
@media (max-width: 991.98px) {
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }

  .footer-list li {
    list-style: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    padding-left: 0;
  }

  .footer-list li {
    list-style: none;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .footer-list li a {
    display: inline-block;
    white-space: nowrap;
  }
}

.nav-pills .nav-link {
  background: #f8f9fa;
  border-radius: 10px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background: #e6f0ff;
  color: #0d6efd;
}

.nav-pills .nav-link.active {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.tab-content ul {
  padding-left: 1rem;
}

.tab-content ul li {
  margin-bottom: 0.5rem;
}
.list-group-item {
  border: none;
  border-radius: 15px; 
  padding: 20px;        
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff; 
}

.number-box {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}


@media (max-width: 767.98px) {
  .custom-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }

  table.table {
    font-size: 0.9rem;
    min-width: 600px;
    border-collapse: collapse;
  }

  .table th,
  .table td {
    padding: 0.6rem;
    white-space: nowrap;
  }

  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.2rem;
  }
}

#work-process {
  border: 1px solid #ffffff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  background: #fff;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}
/* Process Card Hover */
#work-process .process-card {
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #ffffff;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}

#work-process .process-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}
#work-process .process-card1 {
  border: 1px solid #ffffff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  background: #ffffff;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}

#work-process .process-card1:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}
#work-process .process-card {
  position: relative;
  border-radius: 15px;
  background: #ffffff;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.step-icon {
  transition: transform 0.3s;
}
.ai-card:hover .step-icon {
  transform: scale(1.1);
}

.center-box {
  border: 2px solid #e0e0e0;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.steps-list li strong {
  display: inline-block;
  margin-right: 0.25rem;
}

@media (max-width: 767px) {
  .steps-list li {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.usecase-box {
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 18px;
  transition: 0.2s ease-in-out;
  background: #fafafa;
}
.usecase-box:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}
.usecase-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.usecase-text {
  color: #555;
  line-height: 1.6;
}





.sd-section {
  background: #f0f4f8;
}
.sd-card {
  border-radius: 20px;
  border: none;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.sd-point-list {
  list-style: disc; 
  padding-left: 20px;
}
.sd-point-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.section-title {
  font-weight: 700;
  color: #0d3b66;
  font-size: 48px;
  margin-bottom: 25px;
}


.pill-container {
max-width: 1100px;
margin: 60px auto;
}
.nav-pills .nav-link {
border-radius: 10px;
padding: 12px 18px;
margin-bottom: 10px;
font-weight: 500;
}
.content-box {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
min-height: 420px;
}
/* Fix for Mobile App Development lists */
#c3 ul {
    display: block !important;
    padding-left: 20px;
    text-align: left !important;
}

#c3 ul li {
    display: list-item !important;
    text-align: left !important;
}

.nav-pills .nav-link {
  background: #f8f9fa;
  border-radius: 10px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background: #e6f0ff;
  color: #0d6efd;
}

.nav-pills .nav-link.active {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.tab-content ul {
  padding-left: 1rem;
}

.tab-content ul li {
  margin-bottom: 0.5rem;
}