.section-metrics {
  text-align: center;
  padding: 60px 20px;
}

.section-metrics .metrics-grid {
  display: grid;
  width:90%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin:0 auto;
  justify-content: center;
  justify-items: center;
}

/* animation base state */
.section-metrics .metrics-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-metrics .metrics-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Keep consistent card size always */
.section-metrics .metric-card {
  background-color: #090c3d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  width: 250px;        /* fixed width */
  height: 130px;       /* optional: ensures uniform height */
  text-align: center;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-metrics .metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(45, 62, 255, 0.3);
}

.section-metrics .metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 10px;
}

/* ✅ Keep the same size on all screens — no shrinking */
@media (max-width: 768px) {
  .section-metrics .metrics-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-metrics .metric-card {
    width: 250px;  /* stays same width */
    height: 130px; /* stays same height */
  }
}




.news-article-page [data-fade-in] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .news-article-page [data-fade-in].visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* optional stagger delay classes */
  .news-article-page [data-fade-in].delay-1 { transition-delay: 0.1s; }
  .news-article-page [data-fade-in].delay-2 { transition-delay: 0.2s; }
  .news-article-page [data-fade-in].delay-3 { transition-delay: 0.3s; }
  .news-article-page [data-fade-in].delay-4 { transition-delay: 0.4s; }

  /* Page-specific layout fix */
.news-article-page .section {
  padding: 80px 20px;
}

.news-article-page .section-top {
  padding: 120px 20px 80px;
}

.news-article-page .content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.news-article-page .block-heading-top {
  width:100%;
}

.news-article-page h1,
.news-article-page h2,
.news-article-page h3,
.news-article-page h4 {
  margin-bottom: 20px;
}

.news-article-page p {
  margin-bottom: 20px;
}

.news-article-page blockquote {
  margin: 40px 0;
}

.news-article-page .button,
.news-article-page .button-small {
  margin-top: 40px;
}

/* Related News spacing */
.news-article-page .grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* News article page specific styles */
.news-article-page .back-to-news-section {
  padding: 100px 20px 120px;
}

.news-article-page .back-button {
  background: linear-gradient(90deg, #2d3eff, #5163ff);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 36px;
  box-shadow: 0 0 25px rgba(45, 62, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.news-article-page .back-button:hover {
  background: linear-gradient(90deg, #5163ff, #2d3eff);
  box-shadow: 0 0 35px rgba(45, 62, 255, 0.5);
  transform: translateY(-3px);
}

/* Optional fade-in for this section */
.news-article-page .back-to-news-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.news-article-page .back-to-news-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-article-page .heading-hero {
    width:100%;
    max-width:100%;
}

.news-article-page .paragraph {
    font-size:16px;
}

/* ----------------------------------------
   NEWS ARTICLE PAGE — CONTENT ONLY
   ---------------------------------------- */

/* Background + global font (does not override nav/footer) */
.news-article-page {
  background: #000;
  color: #e0e3ff;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.75;
}

/* Restrict styles to the main article sections only */
.news-article-page .section-top,
.news-article-page .section,
.news-article-page .back-to-news-section {
  display: flex;
  justify-content: center;
  padding: 80px 24px;
}

.news-article-page .section-top .content,
.news-article-page .section .content,
.news-article-page .back-to-news-section .content {
  max-width: 900px;
  width: 100%;
}

/* Hero heading + subtitle */
.news-article-page .section-top .subtitle {
  color: #8a90ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.news-article-page .section-top .heading-hero {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.news-article-page .paragraph-hero {
  color: #b5b8d6;
  font-size: 1.1rem;
}

/* Article headings */
.news-article-page .section h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* Article paragraphs */
.news-article-page .section .paragraph {
  color: #b5b8d6;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Article image */
.news-article-page .section img {
  max-width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
}

/* Blockquote */
.news-article-page blockquote {
  border-left: 3px solid #2d3eff;
  padding-left: 1.5rem;
  margin: 3rem auto;
  font-style: italic;
  color: #d0d3f9;
  font-size:20px;
}

/* Back button */
.news-article-page .back-to-news-section .back-button,
.news-article-page .section .button {
  background: linear-gradient(90deg, #2d3eff, #5163ff);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 36px;
  box-shadow: 0 0 25px rgba(45, 62, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.news-article-page .back-to-news-section .back-button:hover,
.news-article-page .section .button:hover {
  background: linear-gradient(90deg, #5163ff, #2d3eff);
  box-shadow: 0 0 35px rgba(45, 62, 255, 0.5);
  transform: translateY(-3px);
}

/* Fade-in animation */
.news-article-page [data-fade-in] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.news-article-page [data-fade-in].visible {
  opacity: 1;
  transform: translateY(0);
}

.news-article-page .paragraph, .news-article-page .heading{
    max-width:100%;
}

/* Increase hero vertical padding */
.news-article-page .section-top {
  padding: 20px 24px; /* previously smaller */
  padding-top:140px;
}

/* Decrease article body padding */
.news-article-page .section {
  padding: 20px 24px; /* reduced from a larger value */
}

.news-article-page .paragraph a {
    color: #b5b8d6;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .news-article-page .section-top .heading-hero {
    font-size: 1.9rem;
  }
  .news-article-page .section h4 {
    font-size: 1.2rem;
  }
  .news-article-page .section .paragraph {
    font-size: 1rem;
  }
}




/* Dropdown container */
.w-dropdown {
  position: relative;
}

/* Dropdown toggle */
.w-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--paragraphs);
}

/* Dropdown list */
.w-dropdown-list {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 160px;
  background: rgba(10, 15, 30, 0.95); /* dark translucent */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* When dropdown is active (we'll toggle this in JS) */
.w-dropdown-list.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown links */
.w-dropdown-link,
.w-dropdown-link-2 {
  display: block;
  padding: 0.7rem 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

/* Hover effect */
.w-dropdown-link:hover,
.w-dropdown-link-2:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

#companies {
  min-height:160px;
}

@media screen and (max-width:768px) {
  #companies {
    min-height:auto;
  }
}




.news-card {
  background-color: #0b0f14;
  border-radius: 20px;
  padding: 32px;
  color: #e0e6ed;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.news-card-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 12px;
  object-fit: cover;
}

.news-date {
  font-size: 12px;
  font-weight: 500;
  color: #8a99a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

.news-readmore {
  margin-top: 8px;
}

.readmore-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0b3c0;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.readmore-link:hover {
  color: #fff;
}

.readmore-circle {
  width: 40px;
  height: 40px;
  background-color: #121a22;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.readmore-icon {
  width: 16px;
  height: 16px;
}









