.space-service-sec {
  padding: 80px 0px;
}
.service-what-we-do-sec h3 {
  font-size: 25px;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

.tabs-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: black;
  box-shadow:
    0 0 1px 0 rgba(24, 94, 224, 0.15),
    0 6px 12px 0 rgba(24, 94, 224, 0.15);
  padding: 0.75rem;
  border-radius: 30px;
}

.tabs * {
  z-index: 2;
}

input[type="radio"] {
  display: none;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 185px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  text-align: center;
  color: white;
}

.notification {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: 0.75rem;
  border-radius: 50%;
  background-color: var(--secondary-color);
  transition: 0.15s ease-in;
}

input[type="radio"]:checked + label {
  color: #f0e30f;
}

input[type="radio"]:checked + label > .notification {
  background-color: var(--primary-color);
  color: #fff;
}

input[id="radio-1"]:checked ~ .glider {
  transform: translateX(0);
}

input[id="radio-2"]:checked ~ .glider {
  transform: translateX(100%);
}

input[id="radio-3"]:checked ~ .glider {
  transform: translateX(200%);
}

.glider {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 54px;
  width: 200px;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}

.tab-content {
  width: 100%;
  margin-top: 15px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(24, 94, 224, 0.08);
  background-color: white;
}

.our-solution-sec-img img {
  width: 350px;
  border: 5px solid black;
  border-radius: 20px;
}
.tab-sec1,
.tab-sec2,
.tab-sec3 {
  display: none;
  align-items: center;
  gap: 20px;
}
/* Section 1 */
#radio-1-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-1-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-1-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 2 */
#radio-2-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-2-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-2-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 3 */
#radio-3-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-3-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-3-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 4 */
#radio-4-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-4-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-4-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 5 */
#radio-5-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-5-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-5-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 6 */
#radio-6-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-6-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-6-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 7 */
#radio-7-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-7-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-7-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 8 */
#radio-8-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-8-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-8-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

/* Section 9 */
#radio-9-1:checked ~ .tab-content .tab-sec1 {
  display: flex;
}
#radio-9-2:checked ~ .tab-content .tab-sec2 {
  display: flex;
}
#radio-9-3:checked ~ .tab-content .tab-sec3 {
  display: flex;
}

.service-break {
  display: none;
}

.content h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: black;
  font-size: 1.5rem;
}

.content ul {
  margin: 0;
  padding-left: 0px;
}

.content ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: black;
  line-height: 1.6;
}

#radio-1:checked ~ .tab-content .content-1 {
  display: block;
}

#radio-2:checked ~ .tab-content .content-2 {
  display: block;
}

#radio-3:checked ~ .tab-content .content-3 {
  display: block;
}

@media (max-width: 768px) {
  .tabs {
    border-radius: 20px;
  }

  .tab,
  .glider {
    width: 100%;
  }

  .tab {
    justify-content: flex-start;
    padding-left: 20px;
  }

  input[id="radio-1"]:checked ~ .glider {
    transform: translateY(0);
  }

  input[id="radio-2"]:checked ~ .glider {
    transform: translateY(100%);
  }

  input[id="radio-3"]:checked ~ .glider {
    transform: translateY(200%);
  }

  .glider {
    left: 12px;
    width: calc(100% - 24px);
  }
}
.content-1 ul li img,
.content-2 ul li img,
.content-3 ul li img {
  width: 20px;
}
.service-li-sec li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-li-sec li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
#cta-sec-service {
  background-image: url(../images/service/cta/cta-img-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 30px 30px 0px 0px;
  padding: 30px 0px;
}
.cta-service-sec {
  align-items: center;
  justify-content: center;
  padding: 20px 0px 0px 0px;
}
#cta-sec-service h2,
#cta-sec-service p {
  color: white;
  width: 800px;
  margin: 0px auto;
}

/* banner */
.services-banner {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  min-height: 320px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a, #020617);
  overflow: hidden;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.services-banner-content {
  position: relative;
  z-index: 2;
  text-align: start;
  color: #ffffff;
}

.services-banner-content h1 {
  margin-top: 12px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
}

.breadcrumb {
  font-size: 16px;
  color: #e2e8f0;
  margin: 0;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #d4c90d;
}

.breadcrumb .divider {
  margin: 0 10px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .services-banner {
    min-height: 240px;
    padding: 40px 15px;
  }

  .services-banner-content h1 {
    font-size: 30px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}
#service-banner-sec {
  background-image: url(../images/service/banner/service-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.space-service-sec-extra {
  padding: 0px 0px 80px 0px;
}
#service1,
#service3,
#service5,
#service7,
#service9 {
  background-color: #f7f8f3;
  padding: 50px 0px 20px 0px;
}
#service2,
#service4,
#service6,
#service8 {
  padding: 30px 0px 0px 0px;
}

@media (max-width: 600px) {
  #comprehensive-sec .row {
    flex-direction: column-reverse;
  }
  .space-service-sec {
    padding: 40px 0px;
  }
  .tab-sec1,
  .tab-sec2,
  .tab-sec3 {
    flex-direction: column;
  }
  #service1 .row,
  #service2 .row,
  #service3 .row,
  #service4 .row,
  #service5 .row,
  #service6 .row,
  #service7 .row,
  #service8 .row,
  #service9 .row {
    gap: 30px;
  }
  #service2 .row,
  #service4 .row,
  #service6 .row,
  #service8 .row {
    flex-direction: column-reverse;
  }
  #cta-sec-service h2,
  #cta-sec-service p {
    width: 373px;
    margin: 0px auto;
  }
  .services-banner-content {
    text-align: start;
  }
  #service-banner-sec {
    background-image: url(../images/service/banner/mobile-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .nav__menu.active {
    background-color: black;
  }
  .nav__item {
    gap: 10px;
  }
  .nav__item  {
  align-items: center;
  gap: 10px;
}
 .tab,
  .glider {
    width: 30%;
  }
  .tab-content {
  width: 100%;
  margin-top: 15px;
  background: #fff;
  padding: 20px 15px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(24, 94, 224, 0.08);
  background-color: white;
}
}
@media (min-width: 768px) and (max-width: 998px) {
  .service-break {
    display: block;
  }
  #comprehensive-sec .row {
    flex-direction: column-reverse;
  }
  .tab-image img {
    width: 80%;
    padding-top: 10px;
    margin: 0px auto;
  }
  .tab-sec1,
  .tab-sec2,
  .tab-sec3 {
    justify-content: space-around;
  }
  #service2 .row,
  #service4 .row,
  #service6 .row,
  #service8 .row {
    flex-direction: column-reverse;
  }
  #cta-sec-service {
    background-image: url(../images/service/banner/mobile-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px 30px 0px 0px;
    padding: 30px 0px;
}
.nav__menu.active{
  background-color: black;
}
.nav__item  {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.nav__item  {
  align-items: center;
  gap: 10px;
}
 .nav__menu{
  max-width: 497px;
 }

}
