/* =========================================================
   GLOBAL SETTINGS
========================================================= */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: #333;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  padding: 0 20px;
}

.container.narrow {
  max-width: 720px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* =========================================================
   HERO (ORANGE GRADIENT)
========================================================= */

.hero-evolved {
  background: linear-gradient(135deg, #f46b45, #eea849);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-evolved h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

/* HERO SHAPES */

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  bottom: 20%;
  right: 20%;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary {
  background: #fff;
  color: #f46b45;
  padding: 14px 28px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
}

.btn-outline {
  border: 2px solid #f46b45;
  color: #f46b45;
  padding: 14px 28px;
  border-radius: 30px;
}

/* BUTTON GROUP CENTER */

.hero-buttons.center {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* =========================================================
   SECTIONS
========================================================= */

.section-clean {
  padding: 80px 0;
}

/* SOFT SECTION (WHY THE CHANGE) */
.section-soft {
  background-color: #f7f9fc;
  padding: 80px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-soft p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* =========================================================
   FINAL CTA FLOATING CARD SECTION
========================================================= */

.section-cta-final {
  padding: 100px 0;
}

/* OUTER BACKGROUND */
.cta-floating-section {
  background: #eef1f6;
  padding: 120px 0 60px;
  position: relative;
}

/* CTA CARD */
.cta-card {
  background: #f4f5f7;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CTA TITLE */
.cta-card h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-card h2 span {
  color: #ff6a3d;
}

/* CTA LINK */
.cta-link a {
  color: #6c7a89;
  font-size: 16px;
}

.cta-link a:hover {
  text-decoration: underline;
}

/* CTA SHAPES */

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape.yellow {
  width: 80px;
  height: 80px;
  background: #f7c325;
  left: -30px;
  top: 40%;
}

.cta-shape.purple {
  width: 90px;
  height: 90px;
  background: #6c63ff;
  right: -40px;
  top: -20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .hero-evolved h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .cta-shape {
    display: none;
  }
}

.stats-counter-block {
  padding: 70px 20px;
  background: #f4f7fb;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Each Stat */
.stat-item {
  flex: 1;
  min-width: 200px;
}

/* Number */
.number {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Label */
.label {
  font-size: 16px;
  color: #6c7a89;
  font-weight: 400;
}

.blog-list-page {
  padding: 60px 0;
  background: #eef3f9;
}

/* Container width (like screenshot) */
.container--slim {
  max-width: 1100px;
  margin: auto;
}

/* Grid spacing */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5eaf1;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Remove default link style */
.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Inner Layout (IMPORTANT) */
.blog-card-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
}

/* Hover effect */
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Thumbnail */
.blog-thumbnail {
  width: 220px;
  min-width: 220px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  background: #eaeaea;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.blog-content {
  flex: 1;
}

/* Title */
.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Title hover */
.blog-card:hover .blog-title {
  color: #0b5ed7;
}

/* Excerpt */
.blog-excerpt {
  font-size: 15px;
  color: #6c7a89;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Date */
.blog-date {
  font-size: 13px;
  color: #9aa5b1;
}
@media (max-width: 768px) {
  .blog-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-thumbnail {
    width: 100%;
    height: 200px;
  }

  .blog-title {
    font-size: 18px;
  }
}
.blog-inner-wrapper img.attachment-.size-.wp-post-image {
    object-fit: cover;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    height: auto;
    display: block;
}
.inner_body p{
    display:none;
}