/* --- EIS Hero Section (Dark) --- */
.eis-hero {
  background-color: #0a0e14;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.eis-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content Side */
.eis-hero__left {
  flex: 1;
}

.eis-hero__badge {
  background: rgba(255, 255, 255, 0.05);
  color: #eb773e; /* Your brand orange */
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(235, 119, 62, 0.2);
  display: inline-block;
  margin-bottom: 25px;
}

.eis-hero__title {
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -1.5px;
}

.eis-hero__title span {
  color: #eb773e;
}

.eis-hero__desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #8e99a5;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Buttons */
.eis-hero__btns {
  display: flex;
  gap: 15px;
}

.eis-btn-primary {
  background-color: #eb773e;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s, background 0.3s;
}

.eis-btn-primary:hover {
  background-color: #f38a56;
  transform: translateY(-2px);
}

.eis-btn-secondary {
  background-color: #2a3441;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.eis-btn-secondary:hover {
  background-color: #384557;
}

/* Right Image Wrap */
.eis-hero__img-wrap {
  flex: 1;
  position: relative;
}

.eis-hero__img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  filter: brightness(0.9) contrast(1.1);
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .eis-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .eis-hero__title {
    font-size: 2rem;
  }

  .eis-hero__desc {
    margin: 0 auto 40px auto;
  }

  .eis-hero__btns {
    justify-content: center;
  }
}


/* --- Strategic Utility Section (Dark) --- */
.rd-utility {
  background-color: #0a0e14;
  /* padding: 100px 20px; */
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}

.rd-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rd-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
}

.rd-section-desc {
  color: #8e99a5;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

/* Utility Grid Layout */
.rd-utility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Styling */
.rd-utility__card {
  background: #141b24; /* Slightly lighter than section bg */
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rd-utility__card:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 119, 62, 0.3); /* Subtle orange glow */
}

/* Icon Styling */
.rd-utility__icon {
  width: 32px;
  height: 32px;
  color: #eb773e; /* Brand orange */
  margin-bottom: 25px;
}

.rd-utility__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.rd-utility__card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8e99a5;
  margin: 0;
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .rd-utility__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rd-utility__grid {
    grid-template-columns: 1fr;
  }
  
  .rd-section-title {
    font-size: 2rem;
  }
}


/* r and d */

:root {
  --bg-dark: #121821;
  --card-dark: #2a313c;
  --primary-orange: #eb7134;
  --text-light: #ffffff;
  --text-muted: #b0b3b8;
}

.research-section {
  background-color: var(--bg-dark);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
}

.research-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.research-intro {
  text-align: center;
  margin-bottom: 50px;
}

.research-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.title-underline {
  width: 50px;
  height: 3px;
  background-color: var(--primary-orange);
  margin: 0 auto;
}

/* Grid Layout Logic */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.res-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: transform 0.3s ease;
}

/* Specific Card Spans */
.res-card--large {
  grid-column: span 2;
}

/* Background Image Cards */
.res-card--image .res-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.res-card--image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 24, 33, 0.9) 20%, transparent 100%);
  z-index: 2;
}

/* Color Variants */
.res-card--white { background-color: #ffffff; color: #121821; }
.res-card--white p { color: #555; }
.res-card--dark { background-color: var(--card-dark); }
.res-card--orange { background-color: var(--primary-orange); }

/* Typography & Content */
.res-content {
  position: relative;
  z-index: 3;
}

.res-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 40px;
  color: var(--primary-orange);
}

.res-card--orange .res-icon { color: white; }

.res-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.res-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.res-card--white p { color: #666; }
.res-card--orange p { color: rgba(255, 255, 255, 0.9); }

/* Responsive adjustments */
@media (max-width: 900px) {
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .research-grid {
    grid-template-columns: 1fr;
  }
  .res-card--large {
    grid-column: span 1;
  }
}

/* stas */

/* Container styling */
.metrics-dashboard {
  padding: 60px 20px;
  background-color: #ffffff; /* Clean white background */
  font-family: 'Inter', -apple-system, sans-serif; /* Modern sans-serif stack */
}

.metrics-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid layout: 4 columns on desktop, stacks on mobile */
.metrics-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  align-items: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Big dark numbers */
.metric-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111827; /* Very dark navy/black */
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Small orange labels */
.metric-caption {
  font-size: 0.75rem;
  font-weight: 700;
  color: #e67e22; /* Vibrant orange */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metric-value {
    font-size: 2.8rem;
  }
}


/* Section Base */
.process-section {
  background-color: #0b111e; /* Dark navy background */
  padding: 80px 40px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image Styling */
.process-visual {
  flex: 1;
}

.process-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Content Area */
.process-info {
  flex: 1;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Individual Steps */
.step-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-badge {
  background-color: #1f2937; /* Darker pill background */
  color: #f97316; /* Orange number */
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}

.step-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.step-text p {
  font-size: 1rem;
  color: #9ca3af; /* Muted gray text */
  line-height: 1.6;
  margin: 0;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .process-container {
    flex-direction: column;
    text-align: left;
  }
  
  .process-visual {
    width: 100%;
  }
}


/* pipeline */

/* Layout Containers */
.pipeline-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.pipeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pipeline-header {
  margin-bottom: 50px;
}

.pipeline-main-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.pipeline-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
}

/* The Grid */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns for 6 stages */
  gap: 15px;
}

/* Individual Card Styling */
.workflow-card {
  background-color: #1a222e; /* Dark navy card background */
  padding: 30px 20px;
  border-left: 4px solid #f97316; /* The orange accent strip */
  color: #ffffff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.workflow-card:hover {
  transform: translateY(-5px);
}

/* Typography inside cards */
.step-label {
  color: #f97316; /* Orange stage text */
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-desc {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.5;
}

/* Responsive: Stack cards on smaller screens */
@media (max-width: 1024px) {
  .pipeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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


/* Base Section Styling */
.partnership-section {
  background-color: #0b111e; /* Match the dark navy from image */
  padding: 100px 40px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.partnership-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partnership-title {
  font-size: 2.2rem;
  font-weight: 800;
  /* margin-bottom: 50px; */
  letter-spacing: -0.02em;
}

/* The horizontal divider */
.partnership-divider {
  width: 100%;
  height: 1px;
  background-color: #1f2937; /* Subtle dark gray line */
  margin-bottom: 50px;
}

/* Three-column Grid */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px; /* Spacious gaps between columns */
}

/* Individual Card Styling */
.partner-type {
  color: #f97316; /* Specific orange for the headers */
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.partner-brief {
  color: #9ca3af; /* Muted gray for body text */
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partnership-title {
    text-align: center;
  }
  
  .partnership-divider {
    margin-bottom: 40px;
  }
}


/* faq */

/* Container Styles */
.faq-section {
  background-color: #ffffff; /* Page background */
  padding: 80px 20px;
  font-family: 'Inter', sans-serif; /* Recommended clean font */
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 48px;
}

.faq-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Space between cards */
}

/* The Card */
.faq-item {
  background-color: #1a1f2b; /* Dark Navy from image */
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Button/Question Styling */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

/* Arrow Icon (using CSS to match the orange chevron) */
.faq-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  border-right: 2px solid #f97316; /* Orange color */
  border-bottom: 2px solid #f97316;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.faq-question.is-open .faq-arrow {
  transform: rotate(-135deg);
  margin-bottom: -5px;
}

/* Answer Body */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 32px;
}

.faq-answer.is-open {
  max-height: 200px; /* Adjust based on content */
  padding-bottom: 24px;
}

.faq-answer p {
  color: #9ca3af; /* Muted gray text */
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}


/* cta */

:root {
  --cta-bg-left: #1a202c;
  --cta-bg-right: #242b38;
  --cta-orange: #ff6a2a;
  --cta-text-muted: #94a3b8;
}

.cta-section {
  /* padding: 100px 20px; */
  background-color: #0f172a; /* Outer background */
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  /* Creates the split-color effect seen in the image */
  background: linear-gradient(to right, var(--cta-bg-left) 50%, var(--cta-bg-right) 50%);
}

/* Left Section */
.cta-left {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-desc {
  color: var(--cta-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 40px;
}

/* Expert Avatars */
.cta-experts {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-avatars {
  display: flex;
}

.cta-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--cta-bg-left);
  margin-right: -12px; /* Overlap effect */
  object-fit: cover;
}

.cta-experts-label {
  color: #a78b7d; /* Muted orange/brown label */
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 20px;
}

/* Form Section */
.cta-form {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cta-field label {
  display: block;
  color: var(--cta-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cta-field input, 
.cta-field textarea {
  width: 100%;
  background-color: #111827; /* Darker input bg */
  border: 1px solid #2d3748;
  border-radius: 4px;
  padding: 14px;
  color: #fff;
  font-size: 1rem;
}

.cta-field textarea {
  height: 120px;
  resize: none;
}

.cta-submit {
  background-color: var(--cta-orange);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-top: 10px;
}

.cta-submit:hover {
  background-color: #e55a1f;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    background: var(--cta-bg-left);
  }
  .cta-left, .cta-form {
    padding: 40px 24px;
  }
}