/* Centralized global styles for hero and other shared page sections */
/* Centralized hero styles for About pages and reuse - match main index hero */

.top-badge-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--clinical-cyan);
    background: rgba(8, 186, 213, .08);
    border: 1px solid rgba(8, 186, 213, .28);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.top-badge-sub-font {
    display: inline-block;
    color: #08bad5;
    font-size: 14px;
    margin-bottom: 20px;
}

.titles-font{
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
    line-height: 1.16 !important;

    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
}
.titles{
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
    line-height: 1.16 !important;
    color: #0063ba !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;

}
.titles .title-span , .title-span {
    color: #01b8c7 !important;

}

.hero-section ul li {
    list-style: disc; 
}
.hero-section ul  {
    /* padding:0; */
}

.approach-section ul li{
  list-style: none;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  padding: 128px 0 82px;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(1, 199, 200, 0.14) 0%, rgba(1, 199, 200, 0) 26%),
    radial-gradient(circle at 78% 12%, rgba(43, 127, 255, 0.18) 0%, rgba(43, 127, 255, 0) 24%),
    linear-gradient(135deg, #0b1222 0%, #0e1930 46%, #0b1e35 70%, #061423 100%);
}

.about-hero::before,
.about-hero::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  z-index: -1;
  filter: blur(8px);
}

.about-hero::before {
  width: 420px;
  height: 420px;
  left: -150px;
  top: 76px;
  background: radial-gradient(circle, rgba(1, 199, 200, 0.16) 0%, rgba(1, 199, 200, 0) 72%);
}

.about-hero::after {
  width: 520px;
  height: 520px;
  right: -190px;
  top: 0;
  background: radial-gradient(circle, rgba(24, 120, 255, 0.24) 0%, rgba(24, 120, 255, 0) 72%);
}



.about-hero .hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: flex-start;
  padding: 0 15px;
}

.about-hero .hero-copy {
  max-width: 640px;
  color: #fff;
}

.about-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(1, 199, 200, 0.08);
  border: 1px solid rgba(1, 199, 200, 0.28);
  color: #06b6d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.14);
  margin-top: 15px;
}

.about-hero .hero-copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.9rem, 5.3vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.about-hero .hero-copy p {
  max-width: 590px;
  color: rgba(232, 240, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.7;
  margin: 0 0 12px;
}

.about-hero .hero-cta { display:flex; gap:12px; margin-top:22px; }

.about-hero .hero-image { border-radius: 18px; height: 100%; overflow: hidden; box-shadow: 0 24px 72px rgba(2,8,23,0.12); }
.about-hero .hero-image img { display:block; width:100%; height:100%; }

@media (max-width: 1199px) {
  .about-hero .hero-shell { grid-template-columns: 1fr; }
  .about-hero .hero-visual { min-height: auto; }
}

@media (max-width: 767px) {
  .about-hero { min-height: auto; padding: 90px 0 40px; }
  .about-hero .hero-shell { gap: 40px; }
  .about-hero .hero-copy { text-align: center; max-width: 100%; }
  .about-hero .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .about-hero .hero-cta { flex-direction: column; }
  .about-hero .hero-image { width: 100%; }
}

/* future shared global styles can be added here */

/* About content section: single left media, right text */
.about-content {
  padding: 80px 0 80px;
  /* background: var(--white); */
}
.about-content .about-grid {
  max-width: 1210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 0 15px;
}
.about-media-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2,8,23,0.06);
  background: var(--white);
}
.about-media-card img { display:block; width:100%; height:auto; }

.about-copy .kicker {
  display:inline-block;
  background: rgba(0,187,204,0.06);
  color: var(--primary, #08bad5);
  padding:6px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  margin-bottom:14px;
}
.about-copy h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 12px;
    font-weight: 800;
}
.about-copy p { color: var(--muted, #65748a); line-height:1.8; margin-bottom:18px; }
.about-features { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.about-features li { padding-left:28px; position:relative; color:var(--muted,#65748a);} 
.about-features li:before { content: '\2713'; position:absolute; left:0; top:0; color:var(--accent,#08bad5); font-weight:700; }

@media (max-width: 991px) {
  .about-content { padding: 60px 0; }
  .about-content .about-grid { grid-template-columns: 1fr; }
  .about-copy { order: 2; }
  .about-media-card { order: 1; }
}


/* Stats Counter Section */
.stats-section {
    padding: 30px 0;
    background: #f5f7fb;
}

.stats-container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
    background: #fff;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    padding: 0px 0px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

 .approach-card:hover, .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.stat-icon {
  width: 54px;
  height: 54px;
  margin:   0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(8, 186, 213, 0.08);
  color: #08bad5;

  font-size: 18px;
  margin-top: 10px;
}

.stat-card h3 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 12px;
  color: #0891b2;
  font-weight: 800;
}

.stat-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  

  .stat-card h3 {
    font-size: 34px;
  }
}

/* Shared section heading */
.about-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
  padding: 0 15px;
}

.about-section-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(8, 186, 213, 0.08);
    border: 1px solid rgba(8, 186, 213, 0.35);
    color: #0b8fa3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-section-title {
  margin: 14px 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: #0b1736;
}

.about-section-title .accent,
.about-copy h2 .accent {
  color: #08a9be;
}

.about-section-subtext {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
  font-size: 1.1rem;
}

/* Approach section */
.approach-section {
  padding: 86px 0;
  background: #f4f8fc;
}

.approach-grid {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.approach-card {
  border-radius: 16px;
  border: 1px solid #d8ebf3;
  padding: 26px 24px;
  min-height: 290px;
}

.approach-card:nth-child(1) {
  background: #e8f7fb;
}

.approach-card:nth-child(2) {
  background: #eef8f5;
}

.approach-card:nth-child(3) {
  background: #edf3fb;
}

.approach-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #08bad5;
  background: rgba(8, 186, 213, 0.12);
  font-size: 16px;
  margin-bottom: 16px;
}

.approach-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #0b1736;
  font-weight: 700;
}

.approach-card p {
  margin: 0;
  color: #455a75;
  line-height: 1.8;
  font-size: 0.98rem;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.approach-list li {
  position: relative;
  padding-left: 20px;
  color: #455a75;
  line-height: 1.65;
}

.approach-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #08bad5;
  font-weight: 700;
}

/* Services section */
.services-section {
  padding: 86px 0;
  background: #f5f7fb;
}

.services-grid {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.service-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #08bad5;
  background: rgba(8, 186, 213, 0.12);
  margin-bottom: 12px;
  font-size: 14px;
}

.service-card h3 {
    margin: 0 0 8px;
    color: #0b1736;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
    font-size: 0.952rem;
}

@media (max-width: 991px) {
  .approach-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .approach-section,
  .services-section {
    padding: 64px 0;
  }

  .approach-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Why section */
.why-section {
  padding: 88px 0;
  background: #f5f7fb;
}

.why-grid {
  max-width: 1210px;
  margin: 0 auto 26px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.why-card {
  position: relative;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  padding: 18px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: flex-start;

  min-height: 140px;

  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

/* Left Accent Line */
.why-card::before {
  content: "";
  position: absolute;

  left: 0;
  top: 0;

  width: 2px;
  height: 100%;

  background: #08bad5;

  border-radius: 12px 0 0 12px;

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover */
.why-card:hover {
  transform: translateY(-6px);
  border-color: #08bad5;

  box-shadow:
    0 18px 40px rgba(8, 186, 213, 0.14),
    0 6px 18px rgba(15, 23, 42, 0.08);
}

/* Show Line */
.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(8, 186, 213, 0.12);
  color: #08bad5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.why-metric {
  margin-left: auto;
  color: #0891b2;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.why-card h3 {
    grid-column: 1 / -1;
    margin: 0;
    color: #0b1736;
    font-size: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.why-card p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: #64748b;
}

.pressure-panel {
  max-width: 1210px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.pressure-left,
.pressure-right {
  padding: 20px;
}

.pressure-left h3 {
  margin: 10px 0 8px;
  color: #0b1736;
  font-size: 1.75rem;
}

.pressure-left p {
  margin: 0 0 12px;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.95rem;
}

.pressure-list,
.pressure-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pressure-list li,
.pressure-benefits li {
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 7px 10px 7px 24px;
  font-size: 13px;
  line-height: 1.45;
  color: #455a75;
  position: relative;
  background: #f9fbfd;
}

.pressure-list li::before,
.pressure-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 8px;
  top: 6px;
  color: #08bad5;
  font-size: 11px;
  font-weight: 700;
}

.pressure-right {
  background: linear-gradient(140deg, #1495a8 0%, #0e778f 65%, #0b6b83 100%);
  color: #fff;
}

.pressure-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: rgba(228, 249, 255, 0.95);
  font-weight: 700;
}

.pressure-right h3 {
  margin: 4px 0;
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}

.pressure-subtext {
  margin: 0 0 12px;
  color: rgba(228, 249, 255, 0.95);
  font-size: 13px;
}

.pressure-right .pressure-benefits li {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #f2fbff;
}

.pressure-right .pressure-benefits li::before {
  color: #d3f7ff;
}

.pressure-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

/* Testimonials */
.stories-section {
  padding: 88px 0;
  background: #f5f7fb;
}

.stories-grid {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-card {
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  padding: 18px;
}

.story-quote {
  color: #89ddec;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.story-card p {
  margin: 0 0 14px;
  color: #455a75;
  line-height: 1.75;
  font-size: 0.96rem;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.story-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #dbe4f0;
  color: #0b1736;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.story-author h4 {
  margin: 0;
  font-size: 14px;
  color: #0b1736;
}

.story-author small {
  color: #64748b;
  font-size: 12px;
}

.story-stars {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 2px;
}

/* Final CTA */
.about-cta-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 6% 8%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 90% 78%, rgba(80, 236, 255, 0.08) 0, rgba(80, 236, 255, 0) 32%),
    linear-gradient(135deg, #0b1f43 0%, #0f5a78 48%, #0c6a79 100%);
}

.about-cta-section .about-section-head {
  margin-bottom: 24px;
}

.about-cta-section .about-section-kicker {
  color: #d1f5ff;
  border-color: rgba(201, 245, 255, 0.45);
  background: rgba(153, 230, 255, 0.1);
}

.about-cta-section .cta-title,
.about-cta-section .about-section-title {
  color: #ffffff;
}

.about-cta-section .cta-subtext,
.about-cta-section .about-section-subtext {
  color: rgba(226, 245, 255, 0.92);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 15px;
}

.cta-meta {
  margin: 26px 0 0;
  padding: 0 15px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-meta li {
  color: #8adff0;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 991px) {
  .why-grid,
  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pressure-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .why-section,
  .stories-section,
  .about-cta-section {
    padding: 64px 0;
  }

  .why-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .pressure-actions,
  .cta-actions {
    flex-direction: column;
  }

  .pressure-right h3 {
    font-size: 2.2rem;
  }
}

/* Blog hero */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 214, 221, 0.14) 0%, rgba(0, 214, 221, 0) 20%),
    radial-gradient(circle at 10% 100%, rgba(43, 127, 255, 0.1) 0%, rgba(43, 127, 255, 0) 30%),
    linear-gradient(180deg, #062f3f 0%, #053749 68%, #f6f8fb 68%, #f6f8fb 100%);
}

.blog-hero::before,
.blog-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.blog-hero::before {
  width: 380px;
  height: 380px;
  left: -140px;
  top: -120px;
  background: rgba(0, 198, 204, 0.09);
}

.blog-hero::after {
  width: 260px;
  height: 260px;
  right: -120px;
  top: 110px;
  background: rgba(255, 255, 255, 0.06);
}

.blog-hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1210px;
  margin: 0 auto;
  padding: 20px 15px;
}

.blog-hero-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  color: #fff;
}

.blog-hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 214, 221, 0.32);
  color: #76f4ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 214, 221, 0.08);
}

.blog-hero-head h1 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.blog-hero-head p {
  margin: 0 auto 22px;
  max-width: 600px;
  color: rgba(226, 242, 250, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.blog-search {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.blog-search input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(151, 189, 204, 0.45);
  background: rgba(19, 60, 78, 0.9);
  color: #fff;
  padding: 0 18px 0 46px;
  font-size: 0.98rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blog-search input::placeholder {
  color: rgba(219, 236, 244, 0.62);
}

.blog-search input:focus {
  border-color: #00ced6;
  box-shadow: 0 0 0 4px rgba(0, 206, 214, 0.12);
}

.blog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(218, 238, 244, 0.7);
}

.blog-feature-card {
    max-width: 980px;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(8, 21, 38, 0.14);
}

.blog-feature-media {
   min-height: 220px;
  background: #e9eef4;
}

.blog-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-feature-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #08bad5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-feature-meta span + span {
  color: #8aa2bb;
}

.blog-feature-content h2 {
    /* margin: -1px 0 12px; */
    margin: 0;
    color: #0b1736;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: -0.03em;
}

.blog-feature-content p {
  margin: 0;
  color: #536680;
  font-size: 0.98rem;
  line-height: 1.7;
}

.blog-feature-footer {
   margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e8f4fb;
  color: #0b1736;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.blog-author strong {
  display: block;
  color: #0b1736;
  font-size: 12px;
}

.blog-author small {
  color: #8aa2bb;
  font-size: 11px;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b1736;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.blog-read-link:hover {
  color: #08bad5;
}

@media (max-width: 991px) {
  .blog-hero {
    padding: 64px 0 72px;
  }

  .blog-feature-card {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .blog-feature-media {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-hero-head h1 {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .blog-hero-head p {
    font-size: 1rem;
  }

  .blog-feature-content {
    padding: 20px;
  }

  .blog-feature-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* blog cta */
.growth-cta-section {
    padding: 80px 0;
    background: #f4f6f9;
}

.growth-cta-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 50px 48px;

    border-radius: 28px;

    background:
        radial-gradient(circle at top right,
            rgba(0, 206, 209, 0.12),
            transparent 35%),
        linear-gradient(135deg, #032c3a 0%, #012637 100%);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.growth-cta-content {
    max-width: 420px;
}

.growth-cta-content h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
}

.growth-cta-content h2 span {
    color: #00d2d6;
}

.growth-cta-content p {
    margin: 0;
    color: rgba(230, 242, 248, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

.growth-cta-form {
    display: flex;
    align-items: center;
    gap: 12px;
    /* flex-wrap: wrap; */
}
.growth-cta-form input {
    width: 260px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;

    background: rgba(255,255,255,0.06);

    padding: 0 18px;

    color: #fff;
    font-size: 15px;
    outline: none;
}

.growth-cta-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.growth-cta-form input:focus {
    border-color: #00d2d6;
}

.growth-cta-form button {
    height: 54px;
    padding: 0 16px;
    border: none;
    border-radius: 12px;
    background: #00d2d6;
    color: #032c3a;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.growth-cta-form button:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {

    .growth-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .growth-cta-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .growth-cta-section {
        padding: 60px 0;
    }

    .growth-cta-box {
        padding: 36px 24px;
        border-radius: 22px;
    }

    .growth-cta-content h2 {
        font-size: 32px;
    }

    .growth-cta-form {
        width: 100%;
        flex-direction: column;
    }

    .growth-cta-form input,
    .growth-cta-form button {
        width: 100%;
    }
}



/* ===============================
   Insights Section
================================== */

.insights-section {
    padding: 90px 0;
    background: #f4f6f9;
}

.insights-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.insights-heading h2 {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.1;
    color: #062c3b;
    font-weight: 800;
}

.insights-heading p {
    margin: 0;
    color: #6b7b8c;
    font-size: 15px;
}

/* Filters */

.insights-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dbe5ec;
}

.insights-filter button {
    border: none;
    background: transparent;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #5d7185;
    cursor: pointer;
    transition: 0.3s ease;
}

.insights-filter button.active {
    background: #062c3b;
    color: #fff;
}

/* Grid */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */

.insight-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #dde6ee;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

/* .insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
} */

/* Image */

.insight-image {
    display: block;
    position: relative;
    overflow: hidden;
    height: 250px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* Zoom Hover */

.insight-card:hover .insight-image img {
    transform: scale(1.08);
}

/* Overlay */

.insight-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0) 50%);
}

/* Content */

.insight-content {
    padding: 12px;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 18px;

    color: #5f7285;
    font-size: 13px;
    font-weight: 600;
}

.insight-meta i {
    margin-right: 6px;
}

.insight-content h3 {
    /* margin: 0 0 14px; */
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
}

.insight-content h3 a {
    color: #082b3a;
    text-decoration: none;
}

.insight-content p {
    /* margin: 0 0 22px; */
    color: #657789;
    font-size: 16px;
    line-height: 20px;
}

.insight-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* margin-bottom: 20px; */
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #1b63ff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.read-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.insight-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 16px;

    border-radius: 12px;
    border: 1px solid #d8e1ea;

    font-size: 14px;
    font-weight: 600;
    color: #082b3a;
}

/* Responsive */

@media (max-width: 991px) {

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .insights-section {
        padding: 70px 0;
    }

    .insights-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-image {
        height: 220px;
    }

    .insight-content {
        padding: 20px;
    }

    .insight-content h3 {
        font-size: 22px;
    }

    .insight-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .insights-filter {
        width: 100%;
        overflow-x: auto;
    }
}

/* ===============================
   Insights Hero Section
================================== */

.insights-hero {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;

    background:
        radial-gradient(circle at top right,
            rgba(0, 206, 209, 0.12),
            transparent 35%),
        linear-gradient(135deg, #032c3a 0%, #012637 100%);
}

.insights-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(8, 186, 213, 0.08), transparent 50%);
    pointer-events: none;
}

.insights-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, rgba(8, 186, 213, 0.05), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.insights-hero-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-hero-head {
    width: 100%;
    text-align: center;
}

.insights-hero-kicker {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 32px;

    border: 1px solid rgba(8, 186, 213, 0.4);
    border-radius: 32px;

    background: rgba(8, 186, 213, 0.08);
    color: #08bad5;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.insights-hero-head h1 {
    margin: 0 0 18px;

    color: #fff;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.insights-hero-head h1 .accent {
    color: #08bad5;
}

.insights-hero-head p {
    margin: 0 0 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;

    color: rgba(230, 242, 248, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.insights-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.insights-search-icon {
    position: absolute;
    left: 16px;
    color: #8aa2bb;
    font-size: 18px;
    pointer-events: none;
}

.insights-search input {
    width: 100%;
    height: 48px;
    padding: 12px 50px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.95);

    color: #0b1736;
    font-size: 15px;
    outline: none;

    transition: all 0.3s ease;
}

.insights-search input::placeholder {
    color: #8aa2bb;
}

.insights-search input:focus {
    border-color: #08bad5;
    box-shadow: 0 0 0 3px rgba(8, 186, 213, 0.1);
}

/* Responsive */

@media (max-width: 1199px) {
    .insights-hero {
        padding: 40px 0 40px;
    }

    .insights-hero-head h1 {
        margin-bottom: 16px;
    }

    .insights-hero-head p {
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .insights-hero {
        padding: 95px 0 50px;
    }

    .insights-hero-shell {
        padding: 0 20px;
    }

    .insights-hero-kicker {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .insights-hero-head h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 14px;
    }

    .insights-hero-head p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .insights-search input {
        font-size: 14px;
        height: 44px;
    }
}

/* ==================================
   Insights Stats Strip
================================== */

.insights-strip {
    background: #f4f6f9;
    padding: 22px 0;
    border-bottom: 1px solid #dbe5ec;
}

.insights-strip-box {
    max-width: 980px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.insights-strip-content {
    max-width: 50%;
}

.insights-strip-content h3 {
    margin: 0;
    color: #062c3b;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.insights-strip-stats {
    display: flex;
    align-items: center;
    gap: 42px;
}

.strip-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.strip-stat strong {
    color: #08bad5;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.strip-stat span {
    margin-top: 4px;
    color: #7b8a9b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Responsive */

@media (max-width: 767px) {

    .insights-strip {
        padding: 26px 0;
    }

    .insights-strip-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .insights-strip-content h3 {
        font-size: 24px;
    }

    .insights-strip-stats {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }

    .strip-stat strong {
        font-size: 28px;
    }

    .strip-stat span {
        font-size: 11px;
    }
}


/* ==================================
   Insights Knowledge Layout Section    
================================== */

.knowledge-layout-section {
    padding: 90px 0;
    background: #f4f6f9;
}

.knowledge-layout{
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.knowledge-sidebar{
    position: sticky;
    top: 120px;
    align-self: start;
}

.knowledge-content{
    min-width: 0;
}

.knowledge-sidebar-box {
    background: #fff;
    border: 1px solid #dbe5ec;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.knowledge-sidebar-box h3 {
    margin: 0 0 20px;
    color: #062c3b;
    font-size: 22px;
    font-weight: 800;
}

.filter-btn {
    width: 100%;
    border: none;
    background: #f4f7fa;
    color: #5f7285;

    min-height: 50px;
    padding: 0 16px;

    border-radius: 12px;

    text-align: left;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.3s ease;

    margin-bottom: 12px;
}

.filter-btn:last-child {
    margin-bottom: 0;
}

.filter-btn.active,
.filter-btn:hover {
    background: #08bad5;
    color: #fff;
}

/* Sidebar CTA */

.knowledge-sidebar-cta {
    background: #062c3b;
    border-radius: 20px;
    padding: 24px;
    color: #fff;
}

.knowledge-sidebar-cta h4 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
}

.knowledge-sidebar-cta p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.knowledge-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 20px;

    border-radius: 12px;

    background: #08bad5;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

/* Grid */

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card */

.knowledge-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dbe5ec;

    transition: 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Image */

.knowledge-image {
    display: block;
    overflow: hidden;
    height: 240px;
}

.knowledge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.knowledge-card:hover .knowledge-image img {
    transform: scale(1.08);
}

/* Content */

.knowledge-card-content {
    padding: 24px;
}

.knowledge-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 14px;

    border-radius: 999px;

    background: rgba(8, 186, 213, 0.1);
    color: #08bad5;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 16px;
}

.knowledge-card-content h3 {
    margin: 0 0 14px;
    color: #062c3b;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.knowledge-card-content p {
    margin: 0;
    color: #657789;
    line-height: 1.8;
    font-size: 15px;
}


/* custom scrollbar */

.knowledge-content::-webkit-scrollbar,
.knowledge-sidebar::-webkit-scrollbar {
    width: 6px;
    display:none;
}

.knowledge-content::-webkit-scrollbar-thumb,
.knowledge-sidebar::-webkit-scrollbar-thumb {
    background: #08bad5;
    border-radius: 999px;
}

.knowledge-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;

    color: #08bad5;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.knowledge-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.knowledge-read-more:hover {
    color: #062c3b;
}

.knowledge-read-more:hover i {
    transform: translateX(4px);
}

/* Responsive */

@media (max-width: 991px) {

    .knowledge-layout {
        grid-template-columns: 1fr;
    }

    .knowledge-sidebar {
        position: static;
    }

    .knowledge-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {

    .knowledge-layout-section {
        padding: 70px 0;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-image {
        height: 220px;
    }

    .knowledge-card-content {
        padding: 20px;
    }

    .knowledge-card-content h3 {
        font-size: 22px;
    }
}