body {
  overflow-x: hidden;
}

.core-capabilities {
  padding: 20px;
  margin: 40px auto;
}

.core-capabilities h2 {
  font-weight: 700;
  background: linear-gradient(360deg, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: bold
    /* margin-bottom: 5px; */
}

.subtitle {
  color: #0d57a7;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 50px;
}

.capability-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.capability-item {
  width: 48%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.capability-item img {
  width: 30px;
  height: 30px;
}

.capability-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.capability-item p {
  font-size: 14px;
  color: #000;
  margin: 5px 0 0 0;
}

.divider {
  border-top: 1px solid #e5e5e5;
  margin: 15px 0;
}

.fit-stack {
  text-align: center;
  padding: 5px 20px;
  margin-top: -50px;
}

.fit-stack h2 {
  font-weight: 700;
  background: linear-gradient(36deg, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 5px;
}

.fit-subtitle {

  background: linear-gradient(360deg, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  margin-bottom: 30px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.fit-cell {
  border: 1px solid #f0c0d0;
  padding: 15px;
  text-align: left;
  position: relative;
  min-height: 180px;
}

.step-number {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #b4005a;
  font-weight: bold;
}

.fit-cell h4 {
  margin-top: 30px;
  font-size: 16px;
}

.fit-cell p {
  font-size: 14px;
  margin-top: 5px;
}

.fit-highlight {
  grid-column: span 1;
  grid-row: span 2;
  background: linear-gradient(to right, #007bff, #00aaff);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fit-highlight h3 {
  font-size: 20px;
}

.fit-highlight p {
  font-size: 14px;
  margin: 15px 0;
}

.fit-highlight button {
  background: #fff;
  color: #007bff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.highlight {
  color: #ff007f;
  /* bright pink */
  font-weight: 500;
  /* optional: make it slightly bolder */
}

.oms-banner {
  background: linear-gradient(to bottom, #0460A9, #53B1FF);
  color: white;
  text-align: center;
  padding: 150px 20px;
  margin-top: 20px;
  width: 100%;
}

.oms-banner p {
  font-size: 50px;
  line-height: 1 !important;
  font-weight: 400 !important;
  margin: 0;
}

.oms-banner .highlight {
  color: #ffdf00;
  /* bright yellow */
  font-weight: bold;
}

.wins-section {
  text-align: center;
  padding: 40px 20px;
}

.wins-section h2 {
  font-weight: 700;
  background: linear-gradient(360deg, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  text-align: left;
}

.wins-subtitle {
  font-weight: 200;
  background: linear-gradient(90deg, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  text-align: left;
  margin: 10px 0 30px;
  line-height: 1;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.wins-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: left;
}

.wins-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  background: #ccc;
  /* fallback background if image fails */
}

.wins-card h4 {
  margin-top: 10px;
  color: #007bff;
}

.wins-card ul {
  padding-left: 18px;
  font-size: 14px;
  color: #333;
}

.wins-card ul li {
  margin-bottom: 6px;
}

.gradient-heading {
  font-weight: 700;
  background: linear-gradient(360deg, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  /* margin-bottom: 20px; */
  line-height: normal;
}

.main-section-background {
  background-image: url('../pages/images/Lets_Talk.svg');
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.thin-heading {
  font-weight: 140;
  /* thin */
  display: block;
  /* forces new line */
  margin-top: 5px;
}

.explore-btn {
  padding: 5px 24px;
  background-color: #007bff;
  border: none;
  border-radius: 0 25px 25px 0;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.explore-btn span {
  display: block;
  /* forces Capabilities to new line */
  font-weight: normal;
  /* optionally reduce weight */
  font-size: 12px;
  /* slightly smaller text */
}

.workflow-container {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  grid-template-rows: repeat(2, auto);
  border: 1px solid #ff69b4;
  border-radius: 12px;
  overflow: hidden;
  width: max-content;
  margin: 0 auto;
}

.workflow-box {
  border-right: 1px solid #ff69b4;
  border-bottom: 1px solid #ff69b4;
  height: 300px;
  width: 300px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}

.workflow-box:nth-child(3) {
  border-right: none;
}

.workflow-box:nth-child(4) {
  border-bottom: none;
}

.workflow-highlight {
  grid-column: 2 / span 2;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  border-top: 1px solid #ff69b4;
  width: 900px;
  /* 300px x 3 columns */
  box-sizing: border-box;
}

.workflow-highlight h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.workflow-highlight p {
  font-size: 13px;
  line-height: 1.5;
}

.discovery-btn {
  background: #fff;
  color: #007bff;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  align-self: flex-start;
  font-size: 14px;
  margin-top: 12px;
}

.discovery-btn:hover {
  background: #e0e0e0;
}

.workflow-number {
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: bold;
  font-size: 18px;
  color: #c2185b;
}

.wins-section {
  padding: 20px 40px;
  /* Adds space on left/right */
}

.wins-section h2 {
  text-align: left;
  margin-bottom: 10px;
}

.wins-subtitle {
  text-align: left;
  margin-bottom: 20px;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* space between cards */
}

.wins-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.wins-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.wins-card h4 {
  margin-top: 12px;
}

.wins-card ul {
  padding-left: 20px;
  margin-top: 8px;
}

.wins-card li {
  margin-bottom: 6px;
}

.main-section {
  position: relative;
}

.gradient-text {
  background: linear-gradient(to bottom, #53B1FF 34%, #326A99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pixel-text-bottom {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 380px;
  color: rgba(0, 0, 0, 0.05);
  /* Light faded color */
  z-index: 1;
  /* Behind input */
}

.pink-gradient-text {
  background: linear-gradient(90deg, #B4005A 0%, #FE46AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  /* Or left depending on your layout */
  max-width: 100%;
  margin-top: 150px;
}

.email-input {
  position: relative;
  z-index: 2;
  /* Above 'talk.' */
}

.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.email-form button {
  height: 50px;
  font-size: 12px;
  background-color: #53B1FF;
  color: white;
  border: none;
  border-radius: 50px 50px 50px 50px;
  padding: 10px 20px;
  font-weight: 500;
}

.feature-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature-card h4 {
  color: #b4005a;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 20px;
  color: #333;
  line-height: 1.4;
}

.process-flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.process-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #ECF3FC;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
  width: 24%;
  min-width: 200px;
  text-align: left;
  padding: 15px;
}

.process-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.process-card h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 15px 5px 15px;
}

.process-card p {
  font-size: 13px;
  margin: 0 15px 10px 15px;
  color: #333;
}

.stakeholder-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 750px;
  margin: 50px auto 0 auto;


}

.benefit-card {
  background: #f0f6ff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  text-align: left;
}

.benefit-card img {
  width: 100%;
  height: 100px;
  background: #ccc;
  /* Placeholder grey */
  border-radius: 10px;
  object-fit: cover;
}

.benefit-card h4 {
  /* color: #007bff; */
  background: linear-gradient(to bottom, #53B1FF, #326A99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
}

.benefit-card p {
  font-size: 14px;
  color: #000;
}

@media (max-width: 480px) {
  .gradient-text {
    font-size: 40px;
  }

  .thin-heading {
    font-size: 30px;
  }

  .gradient-heading {
    text-align: center;
  }

  .main-section-background {
    min-height: 50vh;
    background-size: 90%;
  }

  .pink-gradient-text {
    font-size: 30px;
  }

  .core-capabilities {
    text-align: center;
  }

  .feature-text {
    text-align: center;
  }

  .pink-gradient-text {
    margin-top: 30px;
  }
}

/* Responsive styles for .core-capabilities */
@media (max-width: 900px) {
  .core-capabilities {
    max-width: 90vw;
    padding: 20px;
    margin: 40px auto;
  }

  .core-capabilities h2 {
    font-size: clamp(24px, 6vw, 48px);
  }

  .subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: clamp(25px, 3vw, 50px);
  }
}

/* Responsive styles for .capability-row */
@media (max-width: 768px) {
  .capability-item {
    width: 100%;
  }

  .capability-item img {
    width: clamp(20px, 3vw, 30px);
    height: clamp(20px, 3vw, 30px);
  }

  .capability-item h4 {
    font-size: clamp(14px, 2vw, 16px);
  }

  .capability-item p {
    font-size: clamp(12px, 1.8vw, 14px);
  }
}

/* Responsive styles for .fit-stack */
@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: auto;
  }

  .fit-highlight {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .fit-cell {
    min-height: clamp(150px, 25vw, 180px);
  }

  .step-number {
    font-size: clamp(14px, 2vw, 16px);
  }

  .fit-cell h4 {
    font-size: clamp(14px, 2vw, 16px);
    margin-top: clamp(20px, 3vw, 30px);
  }

  .fit-cell p {
    font-size: clamp(12px, 1.8vw, 14px);
  }

  .fit-highlight h3 {
    font-size: clamp(16px, 2.5vw, 20px);
  }

  .fit-highlight p {
    font-size: clamp(12px, 1.8vw, 14px);
  }

  .fit-highlight button {
    font-size: clamp(12px, 1.8vw, 14px);
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 2vw, 20px);
  }
}

/* Responsive styles for .oms-banner */
@media (max-width: 768px) {
  .oms-banner p {
    font-size: clamp(20px, 4vw, 35px);
  }
}

/* Responsive styles for .wins-section */
@media (max-width: 768px) {
  .wins-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .wins-section {
    padding: 20px 20px;
  }

  .wins-section h2 {
    font-size: clamp(24px, 4.5vw, 34px);
  }

  .wins-subtitle {
    font-size: clamp(12px, 1.8vw, 14px);
    margin: clamp(5px, 1vw, 10px) 0 clamp(15px, 2vw, 30px);
  }

  .wins-card img {
    height: clamp(80px, 15vw, 150px);
  }

  .wins-card h4 {
    font-size: clamp(14px, 2vw, 16px);
  }

  .wins-card ul {
    font-size: clamp(12px, 1.8vw, 14px);
  }
}

/* Responsive styles for .gradient-heading */
@media (max-width: 768px) {
  .gradient-heading {
    font-size: clamp(40px, 6vw, 62px);
  }
}

/* Responsive styles for .explore-btn */
@media (max-width: 768px) {
  .explore-btn {
    font-size: clamp(12px, 1.8vw, 14px);
  }

  .explore-btn span {
    font-size: clamp(10px, 1.6vw, 12px);
  }
}

/* Responsive styles for .workflow-container */
@media (max-width: 900px) {
  .workflow-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
  }

  .workflow-box {
    width: 100%;
    height: 300px;
    border-right: none;
    border-bottom: 1px solid #ff69b4;
  }

  .workflow-box:nth-child(3) {
    border-right: none;
  }

  .workflow-box:nth-child(4) {
    border-bottom: none;
  }

  .workflow-highlight {
    width: 100%;
    grid-column: unset;
    grid-row: unset;
    border-top: 1px solid #ff69b4;
  }

  .workflow-highlight h3 {
    font-size: clamp(16px, 2.2vw, 18px);
  }

  .workflow-highlight p {
    font-size: clamp(11px, 1.6vw, 13px);
  }

  .discovery-btn {
    font-size: clamp(12px, 1.8vw, 14px);
  }

  .workflow-number {
    font-size: clamp(16px, 2.2vw, 18px);
  }
}

@media (min-width: 901px) {
  .workflow-container {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    grid-template-rows: repeat(2, auto);
    width: max-content;
  }

  .workflow-box {
    width: 300px;
    border-right: 1px solid #ff69b4;
  }

  .workflow-box:nth-child(3) {
    border-right: none;
  }

  .workflow-box:nth-child(4) {
    border-bottom: none;
  }

  .workflow-highlight {
    grid-column: 2 / span 2;
    width: 900px;
  }
}

/* Responsive styles for .features-section */
@media (max-width: 768px) {
  .features-section {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .feature-card img {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
  }

  .feature-card h4 {
    font-size: clamp(14px, 2vw, 16px);
  }

  .feature-card p {
    font-size: clamp(12px, 1.8vw, 14px);
  }
}

/* Responsive styles for .process-flow */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
  }

  .process-card {
    width: 100%;
    min-width: 0;
  }

  .process-card img {
    height: clamp(80px, 15vw, 120px);
  }

  .process-card h4 {
    font-size: clamp(14px, 2vw, 16px);
  }

  .process-card p {
    font-size: clamp(12px, 1.8vw, 13px);
  }
}

/* Responsive styles for .stakeholder-benefits */
@media (max-width: 768px) {
  .stakeholder-benefits {
    grid-template-columns: 1fr;
    max-width: 90vw;
  }

  .benefit-card img {
    height: clamp(80px, 15vw, 100px);
  }

  .benefit-card h4 {
    font-size: clamp(14px, 2vw, 16px);
  }

  .benefit-card p {
    font-size: clamp(12px, 1.8vw, 14px);
  }
}

/* Responsive styles for .pixel-text-bottom */
@media (max-width: 768px) {
  .pixel-text-bottom {
    font-size: clamp(100px, 20vw, 380px);
  }
}