/* service */

/* Main container */
.servicesSection_container {
  max-width: 100%;
  margin: 0 auto;
  transition: background-color 0.7s ease-in-out;
  background-color: transparent;
  /* default */
  padding: 150px 20px ;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.innerservice {
  width: 1140px;
}

.innerservice {
  width: 1140px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

/* Service card common styles */
.servicesSection_card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 502px;
}

@media (min-width: 992px) {
  .servicesSection_card {
    flex-direction: row;
    min-height: 400px;
  }
}

/* Card content area */
.servicesSection_content {
  flex: 1;
  padding: 38px 60px 38px 81px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card visual area */
.servicesSection_visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}

@media (min-width: 992px) {
  .servicesSection_visual {
    min-height: auto;
  }
}

/* Card specific gradients */
.servicesSection_card--uiux {
  background: linear-gradient(122deg, #0DCEA8 0%, #07836C 99%);
}

.servicesSection_card--dev {
  background: linear-gradient(122deg, #0DCEA8 0%, #07997D 100%);
}

.servicesSection_card--marketing {
  background: linear-gradient(122deg, #07997D 0%, #050E1E 99%);
}

/* Typography */
.servicesSection_title {
  color: white;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 10px;
}

.servicesSection_title--main {
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
}

.servicesSection_subtitle {
  color: white;
  font-family: 'inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Services list */
.servicesSection_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: auto;
}

.servicesSection_serviceItem {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.60);
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.servicesSection_serviceItem:not(:last-child)::after {
  content: '/';
  color: #337CFF;
  font-size: 16px;
  margin-left: 10px;
}

/* Button */
.servicesSection_button {
  width: 142px;
  height: 45px;
  border-radius: 25px;
  background: linear-gradient(90deg, white 100%);
  box-shadow: 0px 12px 32px #0DCEA8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  cursor: pointer;
  border: none;
}

.servicesSection_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: 25px;
  z-index: 1;
}

.servicesSection_buttonText {
  color: black;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 20px;
  z-index: 2;
  position: relative;
}

.servicesSection_buttonIcon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}

.servicesSection_buttonIcon::before,
.servicesSection_buttonIcon::after {
  content: '';
  position: absolute;
  border: 2px solid white;
  top: 50%;
  transform: translateY(-50%);
}

.servicesSection_buttonIcon::before {
  width: 8px;
  height: 8px;
  left: 6px;
}

.servicesSection_buttonIcon::after {
  width: 7px;
  height: 7px;
  left: 7px;
}

/* Images */
.servicesSection_imageMain {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.servicesSection_imageOverlay {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: -30px;
  z-index: 1;
}

/* Mobile responsiveness */
@media (max-width: 1199px) {
  .servicesSection_content {
    padding: 80px 40px 40px 60px;
  }
}

@media (max-width: 991px) {
  .servicesSection_card {
    min-height: auto;
  }

  .servicesSection_content {
    padding: 60px 30px 40px 30px;
  }

  .servicesSection_visual {
    order: -1;
    min-height: 300px;
  }

  .servicesSection_imageMain {
    height: 400px;
    object-fit: cover;
  }

  .servicesSection_title {
    font-size: 42px;
    line-height: 1.2;
  }

  .servicesSection_title--main {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .servicesSection_container {
    padding: 15px;
    gap: 20px;
  }

  .servicesSection_content {
    padding: 40px 20px 30px 20px;
  }

  .servicesSection_title {
    font-size: 36px;
  }

  .servicesSection_title--main {
    font-size: 38px;
  }

  .servicesSection_serviceItem {
    font-size: 16px;
    line-height: 22px;
  }

  .servicesSection_list {
    gap: 15px 25px;
  }

  .servicesSection_visual {
    min-height: 250px;
  }

  .servicesSection_imageMain {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .servicesSection_title {
    font-size: 28px;
  }

  .servicesSection_title--main {
    font-size: 30px;
  }

  .servicesSection_subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .servicesSection_serviceItem {
    font-size: 14px;
  }

  .servicesSection_list {
    gap: 12px 20px;
  }

  .servicesSection_button {
    width: 160px;
    height: 46px;
  }
}

/* Scroll indicator for demo */
.scrollIndicator {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: monospace;
  z-index: 1000;
  display: none;
}

@media (min-width: 768px) {
  .scrollIndicator {
    display: block;
  }
}

 

/* ends */




/* service */

 /* 4th */
.aboutsection4_wrapper {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.aboutsection4_track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-left: 40px;
  border-top: none;
}

.aboutsection4_card {
  min-width: 300px;
  padding: 40px;
  background: white;
  border-radius: 0;
  width: 370px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
  border-right: 1px solid #e7e4e4;
}

.aboutsection4_card h2 {
  font-size: 36px;
  font-family: 'BwGradual', sans-serif;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
}

.aboutsection4_sub {
  font-size: 16px;
  color: #545454;
  margin-bottom: 25px;
  font-weight: 300;
  font-family: 'Lexend', sans-serif;
}

.aboutsection4_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aboutsection4_tags span {
  background: #F7F7F7;
  padding: 10px 22px;
  border-radius: 26px;
  font-size: 12px;
  font-weight: 200;
  font-family: 'Lexend', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .aboutsection4_card {
    min-width: 85vw;
    padding: 30px;
  }
}

 /* ends */




 /* end services  */

.servicesminibox_parent {
  width: 100%;
  background: #fff;
  padding: 80px 20px;
}

.servicesminibox_wrapper {
  width: 1140px;
  max-width: 100%;
  margin: auto;
}

/* ---- HEADER ---- */
.servicesminibox_heading {
  text-align: center;
  margin-bottom: 60px;
}

.servicesminibox_heading .title span,
.servicesminibox_heading .subtitle span {
  font-family: Inter;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  font-size: 80px;
  font-weight: 300;
}

.servicesminibox_heading .subtitle span {
  font-size: 80px;
  font-style: italic;
  font-weight: 700;
}

/* ---- GRID ---- */
.servicesminibox_grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 24px;
  justify-content: center;
}

.servicesminibox_box {
  background: #F7F7F7;
  border-radius: 15px;
  width: 260px;
  padding: 25px;
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
}

.servicesminibox_box img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.servicesminibox_box h3 {
  font-family: Lexend;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.servicesminibox_box p {
  font-family: Lexend;
  font-size: 16px;
  font-weight: 300;
  color: #8D8D8D;
  line-height: 22px;
}

/* ---- CTA ---- */
.servicesminibox_cta {
  background: radial-gradient(ellipse 81% 79% at 25% 102%, #0DCEA8 0%, black 100%);
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(40px);
}

.servicesminibox_cta h3 {
  color: #fff;
  font-size: 24px;
  font-family: Lexend;
  font-weight: 500;
  margin-bottom: 15px;
}

.servicesminibox_cta p {
  color: #bebebe;
  font-size: 16px;
  font-family: Lexend;
  font-weight: 300;
}

.cta_btn {
  margin-top: 25px;
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(90deg, #20D2AF, #07997D );
  color: #fff;
  font-family: Lexend;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  letter-spacing: 1.4px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .servicesminibox_box {
    width: 100%;
  }

  .servicesminibox_heading .title span,
  .servicesminibox_heading .subtitle span {
    font-size: 48px;
  }

  .servicesminibox_cta {
    padding: 30px;
  }
}

 /* ends */