/* =========================
   JOURNEY SECTION
========================= */
.skills-section,
.skills-section * { box-sizing: border-box; }

.skills-section {
  background: linear-gradient(270deg, rgba(57,143,186,0.10) 20.37%, rgba(255,108,99,0.10) 57.73%);
  padding: clamp(32px, 8vw, 64px) clamp(16px, 5vw, 5%);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 12px);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 32px);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.services-heading {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 20px);
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.title {
  color: black;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.5;
  font-weight: 900;
}

.description {
  color: #222;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
  font-weight: 400;
  max-width: 90%;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 16px);
  justify-content: center;
  width: 100%;
  padding: 0 clamp(8px, 2vw, 16px);
}

.services-01,
.services-02,
.services-03,
.services-04 {
  padding: clamp(12px, 3vw, 16px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  align-items: center;
  flex: 1 1 clamp(200px, 25vw, 280px);
  max-width: clamp(250px, 40vw, 300px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: transform .25s ease;
  text-align: center;
}

/* Subtle lift on hover for desktop only */
@media (hover: hover) {
  .services-01:hover,
  .services-02:hover,
  .services-03:hover,
  .services-04:hover { transform: translateY(-3px); }
}

.vector {
  width: clamp(40px, 8vw, 54px);
  height: clamp(40px, 8vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(6px, 2vw, 12px);
}

.ellipse-797,
.ellipse-798,
.ellipse-799 {
  border-radius: 50%;
  border: 2px solid #ff6c63;
  width: clamp(30px, 7vw, 44px);
  height: clamp(30px, 7vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ellipse-798,
.ellipse-799 { margin-top: clamp(-8px, -2vw, -12px); }

.vuesax-linear-task { width: clamp(30px, 7vw, 48px); height: clamp(30px, 7vw, 48px); }
.vuesax-linear-task2 {
  height: auto;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}

.title2 {
  color: #222;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.3;
  font-weight: 900;
}

.description2 {
  color: #222;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: clamp(13px, 2.2vw, 15px);
  line-height: 1.5;
  font-weight: 400;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .services { gap: clamp(8px, 1.5vw, 12px); }
}

@media (max-width: 992px) {
  .services-01, .services-02, .services-03, .services-04 {
    flex: 1 1 clamp(180px, 40vw, 260px);
    max-width: clamp(220px, 45vw, 280px);
  }
}

@media (max-width: 768px) {
  .services { flex-direction: column; align-items: center; gap: clamp(10px, 2vw, 16px); }
  .services-01, .services-02, .services-03, .services-04 { max-width: 90%; }
  .vector { margin-bottom: clamp(4px, 1.5vw, 10px); }
}

@media (max-width: 480px) {
  .title { font-size: clamp(20px, 5vw, 24px); }
  .description { font-size: clamp(12px, 3.2vw, 14px); }
  .title2 { font-size: clamp(16px, 4vw, 20px); }
  .description2 { font-size: clamp(12px, 3vw, 14px); }
  .services-01, .services-02, .services-03, .services-04 { padding: clamp(10px, 2.5vw, 12px); }
}


/* === Card text only: titles + paragraphs === */
/* Card titles stay centered */
.title2 {
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* Card description left-aligned under the title */
.description2 {
  text-align: left;
  line-height: 1.65;
  max-width: 56ch;    /* comfy width */
  margin: 0 auto;     /* keeps it centered block but text inside left */
  text-wrap: pretty;
  hyphens: auto;
}


/* If you prefer centered on small screens, keep left on larger, use this: */
@media (max-width: 480px) {
  .title2,
  .description2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
