.u-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
body {
  padding-top: 80px; /* adjust if header height differs */
}
body {
  font-family: Poppins, sans-serif;
}
/* Sticky LinkedIn Bookmark */
.linkedin-sticky {
  position: fixed;
  top: 20%;
  right: 0;
  transform: translateY(-50%);

  background: #0077b5;
  color: #fff;
  padding: 12px 14px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 6px 0 0 6px;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  z-index: 9999;
  transition: all 0.3s ease;
}

.linkedin-sticky:hover {
  background: #005582;
  padding-right: 18px;
}
.hero-content h1,
.hero-content p {
  font-family: Poppins, sans-serif !important;
}

/* ================= HERO SLIDER – FIXED ================= */

/* Kill default margins (critical) */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.hero-slider {
  position: relative;
  overflow: visible;
  width: 100vw;
  max-width: 100vw;
  padding: 0 !important; /* override Nicepage */
}

.hero-track {
  position: relative;
  width: 100vw;
}

/* Each slide */
.hero-slide {
  display: none;
  width: 100vw;
}

.hero-slide.active {
  display: block;
}

/* ================= BACKGROUND HERO ================= */

.hero-bg {
  position: relative;
  width: 100vw;
  height: 100vh;          /* FULL viewport */
  min-height: 100vh;      /* no gaps */
  padding: 0;             /* IMPORTANT */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Individual background images */
.hero-bg-growth {
  background-image: url("images/earthh.png");
}

.hero-bg-engineering {
  background-image: url("images/Resource\ \(1\).jpeg");
}

.hero-bg-ai {
  background-image: url("images/bg2.png");
}
.hero-bg-gcc {
  background-image: url("images/gcc1.png");
}
.hero-bg-master {
  background-image: url("images/new2.png");
}
.hero-bg-data {
  background-image: url("images/ggg.png");
}
/* ================= OVERLAY ================= */

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
     rgba(0, 0, 0, 0.90) 10%,
  rgba(0, 0, 0, 0.75) 25%,
  rgba(0, 0, 0, 0.55) 40%,
  rgba(0, 0, 0, 0.35) 55%,
  rgba(0, 0, 0, 0.18) 70%,
  rgba(0, 0, 0, 0.08) 90%,
  rgba(0, 0, 0, 0) 100%

  );
}

/* ================= INNER CONTENT ================= */

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px; /* content padding only */
}

.hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 28px;
}

/* CTA */
.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  background: #92be32;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .hero-bg {
    height: 85vh;
    min-height: 85vh;
    background-position: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text {
    max-width: 100%;
  }
}


/* =====================================================
   BUTTONS
===================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: Poppins;
  text-decoration: none;
}

.btn-primary {
  background: #92be32;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #111;
  color: #111;
}

/* =====================================================
   ABOUT
===================================================== */

.about {
  background: #f7f7f7;
}

.about p {
  max-width: 800px;
  line-height: 1.7;
}

/* =====================================================
   INDUSTRIES
===================================================== */
/* SECTION */
.industries-stroke {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}
.industry-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.industry-flow {
  scroll-margin-top: 100px; /* adjust to navbar height */
}


.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.industries-header p {
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.industry-card {
  position: relative;
  padding: 30px;
  min-height: 220px;
  border-radius: 14px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* DARK OVERLAY */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

.industry-card > * {
  position: relative;
  z-index: 2;
}

/* TAG */
.industry-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* TEXT */
.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 10px;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

/* BACKGROUNDS */
.bg-erd {
  background-image: url("/images/Industrial\ IoT\ Connecting\ the\ Physical\ and\ Digital\ Worlds.jpeg");
}

.bg-tech {
  background-image: url("/images/Smart\ Manufacturing\ The\ Future\ of\ Production.jpeg");
}

.bg-mobility {
  background-image: url("/images/Automotive\ ERD\ Driving\ the\ Future\ of\ Mobility.jpeg");
}

.bg-silicon {
  background-image: url("/images/Semiconductor\ Engineering\ Silicon\ Innovation.png");
}

.bg-ai {
  background-image: url("/images/AI\ &\ Machine\ Learning\ Building\ Intelligent\ Systems\ \(2\).jpeg");
}

.bg-iot {
  background-image: url("/images/Industrial\ IoT\ Connecting\ the\ Physical\ and\ Digital\ Worlds.jpeg  ");
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
.hero-bg {
  position: relative;
  overflow: hidden;
}

.hero-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-animation canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-inner,
.hero-text {
  position: relative;
  z-index: 2;
}

/* fade center (important for readability) */
.hero-animation::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.9) 100%);
}
.hero-animation::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* =====================================================
   STORIES
===================================================== */

.stories {
  background: #ffffff;
}

.story-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  padding: 30px;
  border-radius: 14px;
  background: #f9f9f9;
}

.story-card h4 {
  margin-bottom: 10px;
}

/* =====================================================
   ANIMATIONS (SMOOTH & LIGHT)
===================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .industry-grid,
  .story-slider {
    grid-template-columns: 1fr;
  }
}
/* ================= HERO SLIDER ================= */

.hero-slider {
  overflow: hidden;
  background: #fff;
  padding: 80px 20px 40px;
}

.hero-track {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #92be32;
}

.hero-text p {
  font-size: 16px;
  margin: 20px 0 30px;
  max-width: 520px;
}

.hero-image img {
  max-width: 520px;
  width: 100%;
}

/* dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #92be32;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ================= VALUE SECTION ================= */

.value-section {
  background: #ffffff;
  padding: 80px 20px;
}

.value-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.value-left h2 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
}

.value-left p {
  margin-top: 16px;
  font-size: 16px;
  color: #555;
}

.value-right p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .value-inner {
    grid-template-columns: 1fr;
  }
}
/* ================= ABOUT PROPELLENCE – STROKE DESIGN ================= */

.about-stroke {
  padding: 90px 20px;
  background: #ffffff;
}

.about-stroke-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 60px 50px;
  border: 2px solid #92be32; /* brand green stroke */
  border-radius: 28px;
  position: relative;
}

/* Small label */
.about-label {
  position: absolute;
  top: -14px;
  left: 40px;
  background: #ffffff;
  padding: 0 12px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #92be32;
  font-weight: 500;
}

/* Heading */
.about-stroke-box h2 {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

/* Text */
.about-stroke-box p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 820px;
  margin-bottom: 16px;
}

/* CTA */
.about-cta {
  display: inline-block;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #92be32;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.about-cta:hover {
  border-color: #92be32;
}
/* ===== SPECIALIZATIONS LIST ===== */
.specializations-list {
  margin-top: 25px;
  padding-left: 0;
  list-style: none;
}

.specializations-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* custom bullet */
.specializations-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #76b900; /* your green */
  font-size: 12px;
}

/* bold titles */
.specializations-list strong {
  color: #0b1f3a;
  font-weight: 600;
}

/* footer line */
.specializations-footer {
  margin-top: 20px;
  font-size: 15px;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-stroke-box {
    padding: 40px 30px;
  }

  .about-stroke-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .about-label {
    left: 20px;
    font-size: 11px;
  }
}
/* ================= INDUSTRIES – PREMIUM GRID ================= */

.industries-stroke {
  padding: 90px 20px;
  background: #ffffff;
}

.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.industries-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.industries-header h2 {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
}

.industries-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.industry-tile {
  border: 1.5px solid #e5e7eb;
  border-radius: 22px;
  padding: 32px 28px 30px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
  background: #ffffff;
}

.industry-tile:hover {
  border-color: #92be32;
  transform: translateY(-4px);
}

/* Tag */
.industry-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #92be32;
  margin-bottom: 12px;
}

/* Title */
.industry-tile h3 {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #111;
}

/* Text */
.industry-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* CTA */
.industries-cta {
  margin-top: 40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-header h2 {
    font-size: 28px;
  }
}
/* ================= ABOUT – IMAGE BACKGROUND + STROKE ================= */

.about-stroke {
  padding: 120px 20px;
  background-image: url("images/global.jpeg"); /* ← replace */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* subtle overlay so text always reads well */
.about-stroke::before {
  content: "";
  position: absolute;
  inset: 0; 
}

/* keep content above overlay */
.about-stroke-box {
  position: relative;
  background: #ffffff;
}

/* responsive */
@media (max-width: 900px) {
  .about-stroke {
    padding: 90px 20px;
  }
}

/* =========================
   SUCCESS STORIES SECTION
========================= */

.u-section-6 .u-text-1 {
  font-family: Poppins;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 40px;
}

/* =========================
   MARQUEE (CUSTOM)
========================= */

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.marquee-item:hover {
  transform: translateY(-6px);
}

.marquee-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.marquee-item p {
  margin: 10px 12px;
  font-family: Poppins;
  font-size: 0.95rem;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Scope everything to testimonials only */
.testimonials-section,
.testimonials-section * {
  box-sizing: border-box;
}

.testimonials-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: Poppins, system-ui, sans-serif;
}

/* Header */
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.testimonials-section .section-header p {
  font-size: 16px;
  color: #666;
}

/* Slider */
.testimonials-section .slider-container {
  overflow: hidden;
}

.testimonials-section .slider-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

/* Card */
.testimonials-section .testimonial-card {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
}

.testimonials-section .testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

/* Client info */
.testimonials-section .client-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonials-section .client-name {
  font-weight: 600;
}

.testimonials-section .client-company {
  font-size: 14px;
  color: #777;
}

/* Dots */
.testimonials-section .slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials-section .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-section .dot.active {
  width: 28px;
  border-radius: 6px;
  background: #92be32;
}

/* Arrows */
.testimonials-section .slider-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonials-section .arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials-section .testimonial-text {
    font-size: 17px;
  }
}
/* ===== INSIGHTS SLIDER (SCOPED) ===== */
.insights-slider {
  padding: 60px 20px;
  background: #f5f6f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.insights-header {
  max-width: 1200px;
  margin: 0 auto 30px;
}

.insights-header h2 {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
}

/* Slider layout */
.slider-viewport {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* Card */
.insight-card {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.insight-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-card p {
  display: -webkit-box;
  -webkit-line-clamp: 6;     /* number of visible lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  position: relative;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
}
.insight-card p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(transparent, #fff);
}
.insight-card .meta {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.insight-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .insight-card {
    flex: 0 0 240px;
  }
}
.insights-slider {
  padding: 60px 20px;
  background: #f5f6f7;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.insight-card h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.4;
  color: #0c1f4b; 
}

.insight-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.insight-card .meta {
  font-size: 13px;
  font-weight: 500;
}
/* ===== INSIGHT MODAL ===== */
.insight-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.insight-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.insight-modal-content {
  background: #ffffff;
  max-width: 640px;
  width: 90%;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  font-family: 'Poppins', system-ui, sans-serif;
  position: relative;
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.insight-modal-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.insight-modal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.modal-close:hover {
  color: #000;
}
.insights-slider {
  position: relative;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;

  /* Background image */
  background-image: url("/images/bg\ test.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* OVERLAY */
.insight-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.insight-modal.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL BOX */
.insight-modal-content {
  background: #ffffff;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.insight-modal.active .insight-modal-content {
  transform: translateY(0);
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: #f2f4f8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

.modal-close:hover {
  background: #e1e6ef;
}

/* TITLE */
#modalTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8BC34A;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* TEXT */
#modalText {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7;
}

/* SCROLLBAR (optional clean look) */
.insight-modal-content::-webkit-scrollbar {
  width: 6px;
}
.insight-modal-content::-webkit-scrollbar-thumb {
  background: #cfd6e4;
  border-radius: 10px;
}
/* ===== FINAL MODAL DESIGN ===== */

.insight-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 40, 40%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.insight-modal.active {
  opacity: 1;
  visibility: visible;
}

/* CARD */
.insight-modal-content {
  width: 90%;
  max-width: 750px;
  background: linear-gradient(180deg, #0b2c3f 0%, #092233 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: translateY(40px);
  transition: 0.3s ease;
  position: relative;
}

.insight-modal.active .insight-modal-content {
  transform: translateY(0);
}

/* TOP TAG */
.modal-tag {
  text-align: center;
  color: #cfe3f3;
  padding: 18px 20px 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* GREEN STRIP */
.modal-highlight {
  background: #76b900;
  padding: 28px;
  text-align: center;
}

.modal-highlight h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

/* BODY */
.modal-body {
  padding: 35px 40px;
  text-align: center;
}

.modal-body p {
  color: #d6e4f0;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
}

/* QUOTE EFFECT */
.modal-body p::before {
  content: "“";
  position: absolute;
  left: -10px;
  top: -20px;
  font-size: 50px;
  color: rgba(255,255,255,0.1);
}

/* CLOSE */
.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 600px) {
  .modal-body {
    padding: 25px;
  }
}
.rating {
  margin-top: auto;   /* 🔥 forces it to bottom */
  display: flex;
  justify-content: center;
}

.rating span {
  color: #76b900;
  letter-spacing: 5px;
}

.rating small {
  font-size: 13px;
  color: #888;
}