@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");

/* Services Animation Styles */
.services-animation-section {
  margin: 0;
  background-color: #1a1a1a;
  color: #FFFFFFDD;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
}

.services-card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  cursor: pointer;
}

.services-card-content {
  position: absolute;
  left: 0;
  top: 0;
  color: #FFFFFFDD;
  padding-left: 16px;
}

.services-content-place {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}

.services-content-title-1,
.services-content-title-2 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}

.services-content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background-color: #FFFFFFDD;
}

.services-details {
  z-index: 22;
  position: absolute;
  top: 240px;
  left: 60px;
}

.services-details .place-box {
  display: none;
}

.services-details .title-1,
.services-details .title-2 {
  font-weight: 600;
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  line-height: 1.1;
}

.services-details .title-box-1,
.services-details .title-box-2 {
  margin-top: 10px;
  height: 60px;
  overflow: hidden;
}

.services-details > .desc {
  margin-top: 16px;
  width: 500px;
}

.services-details > .cta {
  width: 500px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.services-details > .cta > .bookmark {
  border: none;
  background-color: #0088cc;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  color: white;
  display: grid;
  place-items: center;
}

.services-details > .cta > .bookmark svg {
  width: 20px;
  height: 20px;
}

.services-details > .cta > .discover {
  border: 1px solid #ffffff;
  background-color: transparent;
  height: 36px;
  border-radius: 99px;
  color: #ffffff;
  padding: 4px 24px;
  font-size: 12px;
  margin-left: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-details > .cta > .discover:hover {
  background-color: #0088cc;
  border-color: #0088cc;
}

.services-indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 60;
  background-color: #0088cc;
}

.services-pagination {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
}

.services-pagination > .arrow {
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid #ffffff55;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-pagination > .arrow:hover {
  border-color: #0088cc;
  background-color: rgba(0, 136, 204, 0.1);
}

.services-pagination > .arrow:nth-child(2) {
  margin-left: 20px;
}

.services-pagination > .arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: #ffffff99;
}

.services-progress-sub-container {
  margin-left: 24px;
  z-index: 60;
  width: 500px;
  height: 50px;
  display: flex;
  align-items: center;
}

.services-progress-sub-background {
  width: 500px;
  height: 3px;
  background-color: #ffffff33;
}

.services-progress-sub-foreground {
  height: 3px;
  background-color: #0088cc;
}


.services-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
}

/* Section Header Styles */
.services-section-header {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 50;
  width: 100%;
}

.services-section-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-section-header .section-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-details {
    left: 20px;
    top: 180px;
  }
  
  .services-details .title-1,
  .services-details .title-2 {
    font-size: 32px;
  }
  
  .services-details .title-box-1,
  .services-details .title-box-2 {
    height: 40px;
  }
  
  .services-details > .desc,
  .services-details > .cta {
    width: calc(100vw - 40px);
  }
  
  .services-section-header .section-title {
    font-size: 2rem;
  }
  
  .services-section-header .section-subtitle {
    font-size: 1rem;
  }
}