/*section 1*/
.text-section1 {
  padding-top: 5rem !important;
}
.font-big {
  font-size: 50px;
  font-weight: bold;
  font-family: "Atkinson Hyperlegible", sans-serif;
}
.custom-margin {
  margin-left: 7.5rem;
}
.font-semi-big {
  font-size: 28px;
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.custom-header {
  background-image: url("../assets/Path\ 859.svg");
  height: auto;
  min-height: 200px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.services-banner-image {
  max-width: 100%;
  height: auto;
}

/* section 2 - Intro */
.custom-divider {
  height: 5px;
}
.custom-inner-text {
  font-size: 35px;
  color: #2E2E2E;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 300;
}
.second-section {
  padding: 4rem 0;
}

/* section 3 - What We Do */
.services-section {
  background-color: #f7f7f7;
  padding: 5rem 0;
}
.section-heading {
  font-size: 40px;
  color: #231F20;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}
.section-subheading {
  font-size: 24px;
  color: #2E2E2E;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 400;
  margin-bottom: 3rem;
}

/* Lifecycle phases */
.lifecycle-section {
  padding: 5rem 0;
}
.lifecycle-phase {
  text-align: center;
  padding: 2rem 1rem;
}
.lifecycle-icon {
  width: 80px;
  height: 80px;
  background: #00b3ef;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.lifecycle-title {
  font-size: 22px;
  color: #231F20;
  font-weight: 600;
  margin-bottom: 1rem;
}
.lifecycle-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.lifecycle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #00b3ef;
}

/* Services cards */
.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card:hover {
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}
.service-card-title {
  font-size: 24px;
  color: #231F20;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-card-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0px;
}

/* Dark quote section */
.quote-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/home-page/antennas.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5rem 0;
}
.quote-text {
  font-size: 30px;
  color: #ffffff;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-style: italic;
  text-align: center;
  padding: 0 10%;
}
.quote-icon {
  text-align: center;
  margin-bottom: 2rem;
}

/* Technology section */
.tech-section {
  background: #fff;
  padding: 5rem 0;
}
.tech-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #231F20;
  padding: 0.5rem 1.5rem;
  margin: 0.5rem;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.tech-tag:hover {
  background: #00b3ef;
  color: #fff;
}

/* Placeholder for images */
.image-placeholder {
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  min-height: 300px;
  border-radius: 8px;
}

/* AI-Assisted Development Section */
.ai-section {
  padding: 5rem 0;
  background: #fff;
}
.ai-section-label {
  display: inline-block;
  background: #231F20;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.ai-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #231F20;
  margin-bottom: 1.5rem;
}
.ai-section-text {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1rem;
}
.ai-uses-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ai-use-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}
.ai-use-item:hover {
  background: #00b3ef;
}
.ai-use-item:hover i,
.ai-use-item:hover strong,
.ai-use-item:hover span {
  color: #fff;
}
.ai-use-item i {
  font-size: 24px;
  color: #00b3ef;
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.3s ease;
}
.ai-use-item div {
  display: flex;
  flex-direction: column;
}
.ai-use-item strong {
  font-size: 16px;
  color: #231F20;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.ai-use-item span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* Mobile responsive */
@media screen and (max-width: 991px) {
  .font-big {
    font-size: 36px;
  }
  .font-semi-big {
    font-size: 20px;
  }
  .custom-header {
    height: auto;
  }
  .section-heading {
    font-size: 28px;
  }
  .lifecycle-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  .quote-text {
    font-size: 22px;
    padding: 0 5%;
  }
  .ai-section-title {
    font-size: 28px;
  }
  .ai-section-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .font-big {
    font-size: 28px;
  }
  .font-semi-big {
    font-size: 18px;
  }
  .custom-inner-text {
    font-size: 24px;
  }
  .section-heading {
    font-size: 24px;
  }
  .cta-heading {
    font-size: 28px;
  }
  .ai-section-title {
    font-size: 24px;
  }
  .ai-use-item {
    padding: 1rem;
  }
  .ai-use-item i {
    font-size: 20px;
  }
  .ai-use-item strong {
    font-size: 15px;
  }
  .ai-use-item span {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1460px) {
  .text-section1 {
      padding-top: 2rem !important;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .text-section1 {
      padding-top: 2rem !important;
  }
}