/* =============================================
   OJG SERVICES / CARDS SECTION — scoped
   Namespace: #ojg-cards-section
   ============================================= */

#ojg-cards-section,
#ojg-cards-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#ojg-cards-section {
  background: #ffffff;
  width: 100%;
  padding: 90px 40px;
  overflow: hidden;
}

/* ── Section Header ── */
#ojg-cards-section .ojg-cards-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

#ojg-cards-section .ojg-cards-tag {
  display: inline-block;
  background: #e8f3ff;
  color: #0978ef;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1.5px solid #b3d8fb;
}

#ojg-cards-section .ojg-cards-heading {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #07242f;
  line-height: 1.2;
  letter-spacing: 0px;
  margin: 0 0 18px 0;
}

#ojg-cards-section .ojg-cards-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

#ojg-cards-section .ojg-cards-divider-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0978ef);
  border-radius: 2px;
}

#ojg-cards-section .ojg-cards-divider-line.right {
  background: linear-gradient(90deg, #0978ef, transparent);
}

#ojg-cards-section .ojg-cards-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0978ef;
}

#ojg-cards-section .ojg-cards-desc {
  font-size: 15px;
  color: #5a6a85;
  line-height: 1.8;
  margin: 0;
}

/* ── Cards Grid ── */
#ojg-cards-section .ojg-cards-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

#ojg-cards-section .ojg-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8eef6;
  box-shadow:
    0 8px 20px rgba(5, 25, 55, 0.05),
    0 28px 60px rgba(5, 25, 55, 0.08);
  transition: 0.35s ease;
}

#ojg-cards-section .ojg-card h3,
#ojg-cards-section .ojg-card p {
  overflow-wrap: break-word;
}

#ojg-cards-section .ojg-card:hover {
  transform: translateY(-10px);
  border-color: #0978ef;
  box-shadow:
    0 18px 35px rgba(9, 120, 239, 0.14),
    0 38px 80px rgba(5, 25, 55, 0.14);
}

#ojg-cards-section .ojg-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(9, 120, 239, 0.16),
    rgba(1, 67, 146, 0.04)
  );
}

#ojg-cards-section .ojg-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  left: 34px;
  bottom: 0;
  background: linear-gradient(90deg, #014392, #0978ef);
  border-radius: 20px 20px 0 0;
}

#ojg-cards-section .ojg-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, #014392, #0978ef);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(9, 120, 239, 0.28);
  position: relative;
  z-index: 2;
}

#ojg-cards-section .ojg-icon-box svg {
  width: 35px;
  height: 35px;
  color: #fff;
  stroke-width: 2;
}

#ojg-cards-section .ojg-card h3 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 700;
  color: #07242f;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

#ojg-cards-section .ojg-card .ojg-subtitle {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0978ef;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

#ojg-cards-section .ojg-card p {
  margin-top: 16px;
  color: #607087;
  font-size: 15px;
  line-height: 1.8;
}

#ojg-cards-section .ojg-card-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#ojg-cards-section .ojg-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #07242f;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

#ojg-cards-section .ojg-btn svg {
  width: 18px;
  height: 18px;
  color: #0978ef;
}

#ojg-cards-section .ojg-card:hover .ojg-btn {
  color: #0978ef;
}

#ojg-cards-section .ojg-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eef7ff;
  color: #0978ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ojg-cards-section .ojg-badge svg {
  width: 18px;
  height: 18px;
}

/* ── Heading Responsive ── */
@media (max-width: 1024px) {
  #ojg-cards-section .ojg-cards-heading {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  #ojg-cards-section .ojg-cards-heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  #ojg-cards-section .ojg-cards-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  #ojg-cards-section .ojg-cards-heading {
    font-size: 26px;
  }
}

@media (max-width: 360px) {
  #ojg-cards-section .ojg-cards-heading {
    font-size: 22px;
  }
}

/* ── Grid Responsive ── */
@media (max-width: 1300px) {
  #ojg-cards-section .ojg-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  #ojg-cards-section {
    padding: 64px 28px;
  }
  #ojg-cards-section .ojg-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #ojg-cards-section .ojg-card {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  #ojg-cards-section {
    padding: 48px 20px;
  }
  #ojg-cards-section .ojg-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #ojg-cards-section .ojg-card {
    padding: 28px;
    min-height: auto;
  }
  #ojg-cards-section .ojg-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
  #ojg-cards-section .ojg-icon-box svg {
    width: 30px;
    height: 30px;
  }
  #ojg-cards-section .ojg-card h3 {
    font-size: 20px;
    margin-top: 24px;
  }
  #ojg-cards-section .ojg-card p {
    font-size: 14px;
  }
  #ojg-cards-section .ojg-cards-head {
    margin-bottom: 40px;
  }
}

@media (max-width: 420px) {
  #ojg-cards-section {
    padding: 40px 14px;
  }
  #ojg-cards-section .ojg-card {
    padding: 22px;
    border-radius: 22px;
  }
  #ojg-cards-section .ojg-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
  #ojg-cards-section .ojg-icon-box svg {
    width: 26px;
    height: 26px;
  }
  #ojg-cards-section .ojg-card h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  #ojg-cards-section .ojg-card .ojg-subtitle {
    font-size: 11px;
  }
  #ojg-cards-section .ojg-card p {
    font-size: 13.5px;
    line-height: 1.65;
  }
  #ojg-cards-section .ojg-card-footer {
    margin-top: 22px;
  }
  #ojg-cards-section .ojg-badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
}
