/* Container & Background */
.hero-container {
  background-color: #090e1e; /* Dark navy background matching image_9.png */
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif; /* Clean sans-serif font */
}

.hero-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Left Content Column */
.hero-content {
  flex: 1;
  max-width: 580px;
}

.expert-tag {
  color: #f25b1c; /* Orange accent color from image_9.png */
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.highlight {
  color: #f25b1c; /* Orange highlight on key phrase */
}

.hero-content p {
  color: #a1a7b3; /* Muted text color from image_9.png */
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 500px;
}

/* Button Group */
.button-group {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #f25b1c; /* Orange button matching image_9.png */
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff; /* White button matching image_9.png */
  color: #0b1d33;
}

/* Right Image Column */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  /* Soft shadow for depth, replicating the image_9.png aesthetic */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 80px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .button-group {
    justify-content: center;
  }
    
   .section-header {
    display: block !important;
   }
   
   .capabilities-bento {
    /*display: grid;*/
    grid-template-columns: block;
}
.stack-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


:root {
  --navy: #0a192f;
  --orange: #f25b1c;
  --text-muted: #64748b;
}

.capabilities-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

/* Header Layout */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

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

.section-header h1 {
  font-size: 32px;
  margin: 8px 0 0;
  color: white;
}

.section-header .description {
  max-width: 300px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Bento Grid */
.capabilities-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.card {
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.span-2 { grid-column: span 1; } /* Responsive default */

@media (min-width: 1024px) {
  .span-2 { grid-column: span 1; }
  /* Custom grid for exactly matching the image layout */
  .capabilities-bento {
    grid-template-areas: 
      "large-navy small-white-1"
      "small-white-2 large-orange";
  }
}

/* Color Themes */
.dark-blue { background: var(--navy); color: white; }
.white-bg { background: white; color: #0f172a; border: 1px solid #f1f5f9; flex-direction: column; }
.orange-bg { background: var(--orange); color: white; }

/* Elements */
.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.white-bg .icon-box.accent { background: #fff7ed; color: var(--orange); }

.pill-group {
  display: flex;
  gap: 8px;
  margin-top: 25px;
}

.pill-group span {
  font-size: 10px;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.card-graphic {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 80%;
}

.card-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
}

/* Matching the specific 2nd row shift from the image */
@media (min-width: 1024px) {
  .capabilities-bento div:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
  .capabilities-bento div:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
  .capabilities-bento div:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
  .capabilities-bento div:nth-child(4) { grid-area: 2 / 2 / 3 / 3; width: calc(200% + 20px); margin-left: calc(-100% - 20px); }
}



:root {
  --navy-dark: #050a12;
  --orange: #f25b1c;
  --text-muted: #64748b;
}
.workflow-section {
  background-color: #090e1e;
  padding: 100px 20px;
  color: #ffffff;
  text-align: center;
}

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

.workflow-header {
  margin-bottom: 80px;
}

.workflow-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
}

.workflow-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Steps Grid & Connecting Line */
.workflow-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* Connecting Line */
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.step-card {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 30px;
  border-radius: 12px;
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.step-number {
  background-color: var(--orange);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 25px;
}

.step-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 15px 0;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .workflow-steps {
    flex-direction: column;
    align-items: center;
  }
  .workflow-steps::before {
    display: none;
  }
  .step-card {
    width: 100%;
    max-width: 400px;
  }
}


:root {
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-white: #ffffff;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

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

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

/* Left Content Styles */
.stack-content {
  flex: 1;
  max-width: 450px;
}

.stack-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.stack-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Right Grid Styles */
.stack-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-card {
  background: var(--bg-white);
  padding: 40px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  border: 1px solid #f1f5f9;
}

.tech-card img {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.tech-card span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .stack-container {
    flex-direction: column;
    text-align: center;
  }
  .stack-grid {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Container Background */
.cta-container {
  background-color: #050a12; /* Dark navy background from image */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* Gradient Banner */
.cta-banner {
  background: linear-gradient(135deg, #f25b1c 0%, #ff9e67 100%);
  border-radius: 32px; /* Large rounded corners */
  padding: 80px 40px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  color: #ffffff;
}

/* Typography */
.cta-banner h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: #f25b1c;
}

.btn-dark {
  background-color: #0b1d33;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .cta-banner h2 { font-size: 2rem; }
  .btn-group { flex-direction: column; }
}