:root {
  --bg-deep: #0a111f;
  --card-fill: #1a273d;
  --text-primary: #ffffff;
  --text-dim: #94a3b8;
  --accent-blue: #5b8def;
  --accent-orange: #f06a1d;
}

.success-story {
  background-color: var(--bg-deep);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.story-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left Side Styling */
.badge {
  display: inline-block;
  border: 1px solid rgba(240, 106, 29, 0.3);
  color: var(--accent-orange);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.story-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 32px;
}

.blue-text {
  color: var(--accent-blue);
}

.orange-text {
  color: var(--accent-orange);
}

.story-description {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 48px;
}

/* Metrics Cards */
.metrics-row {
  display: flex;
  gap: 20px;
}

.metric-card {
  background-color: var(--card-fill);
  padding: 24px 32px;
  border-radius: 12px;
  flex: 1;
  max-width: 200px;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 1px;
}

/* Right Side Image */
.image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  /* subtle glow effect to match image */
  box-shadow: 0 0 40px rgba(91, 141, 239, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85);
}

/* Responsive design */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .story-title {
    font-size: 42px;
  }
  
  .story-visual {
    order: -1; /* Move image to top on mobile */
  }
}


:root {
  --navy-dark: #0a111f;
  --navy-card: #111e35;
  --orange: #f06a1d;
  --text-gray: #64748b;
  --text-light: #94a3b8;
}

.case-study-wrapper {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}


/* Challenge Section Styles */
.challenge-section {
  padding: 80px 0;
  background: white;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.challenge-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.main-text {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 30px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--text-gray);
}

/* Solution Section Styles */
.solution-section {
  background: var(--navy-dark);
  padding: 100px 0;
}

/* .center { text-align: center; } */
.white { color: white; margin-bottom: 50px; font-size: 32px; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.sol-card {
  border-radius: 12px;
  padding: 30px;
  overflow: hidden;
}

/* Custom Grid Sizing */
.edge-card {
  grid-column: span 4;
  background: linear-gradient(rgba(17, 30, 53, 0.9), rgba(17, 30, 53, 0.9)), 
              url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  border: 1px solid rgba(255,255,255,0.05);
}

.method-card {
  grid-column: span 2;
  background: var(--navy-card);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.method-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.img-caption {
  padding: 15px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.navy-card { grid-column: span 2; background: var(--navy-card); color: white;}
.orange-card { grid-column: span 2; background: var(--orange); color: white;}
.white-card { grid-column: span 2; background: white; color: #0f172a;}

/* Typography & Details */
h3 { color: white; font-size: 24px; margin: 15px 0; }
h4 { font-size: 18px; margin: 15px 0 10px 0; }

.sol-card p {
  font-size: 14px;
  opacity: 0.8;
}

.tag-row {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.tag {
  font-size: 10px;
  border: 1px solid rgba(240, 106, 29, 0.5);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 20px;
}

.icon-small { font-size: 24px; }
.orange { color: var(--orange); }

/* Responsive */
@media (max-width: 900px) {
  .challenge-grid, .stats-row { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .edge-card, .method-card, .navy-card, .orange-card, .white-card {
    grid-column: span 1;
  }
}


/* Variables for consistency with previous sections */
:root {
    --navy-bg: #0a111f;
    --navy-card: #1a273d;
    --orange: #f06a1d;
    --blue-accent: #5b8def;
    --text-dim: #94a3b8;
}

.final-page-wrap {
    font-family: 'Inter', sans-serif;
    background-color: white;
}

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

/* Metrics Bar Styles */
.metrics-bar-section {
    padding: 80px 0;
    text-align: left;
}

.section-title-dark {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}

.metrics-container {
    background-color: var(--navy-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.metric-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.metric-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
}

.metric-num {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.metric-num.blue { color: var(--blue-accent); }
.metric-num.orange { color: var(--orange); }

.metric-sub {
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Final CTA Styles */
.final-cta-section {
    background-color: var(--navy-bg);
    padding: 120px 0;
    color: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-info h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-desc {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-dim);
}

.check-icon {
    color: var(--blue-accent);
    font-size: 18px;
}

/* Contact Form Card */
.contact-card {
    background-color: var(--navy-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.input-group label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group input, 
.input-group textarea {
    background: #233149;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
}

.input-group textarea {
    height: 100px;
    resize: none;
}

.initiate-btn {
    width: 100%;
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Mobile Layout */
@media (max-width: 850px) {
    .metrics-container { flex-direction: column; gap: 40px; }
    .metric-divider { display: none; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-info h2 { font-size: 36px; }
}

.responsive-footer .footer-menu
{
  gap: 12px 1px !important;
}
 