@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --blue: #2f327d;
  --darkblue: #0d0a37;
  --blue: #2f327d;
  --darkblue: #0d0a37;
  --black: #000000;
  --white: #ffffff;
  --orange: #e8c63d;
  --thickblue: #002b3e;
  --lightblue: #d5f2ff;
  --lightblue2: #bdeaff;
  --black20: #202020;
}
/* Fabric List Services Page */
.microsofFabrictserviceListPage {
  width: 100%;
  position: relative; /* Added for proper bg image positioning */
  display: flex;
  overflow: hidden; /* Prevents any overflow from child elements */
}

/* This will be the full-width background image */
.microsofFabrictserviceListPage::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../../images/microsoftFabric/msfabriclisthomebg.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  background-color: #002b3e; /* Fallback color */
}

.containers {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 1; /* Ensure content appears above the pseudo-element */
  padding-top: 30px;
}

.fabricListHeaderContainer {
  display: flex;
  align-items: center;
  padding: 40px 0;
  max-width: 50%; /* Prevent text from overlapping with bg image */
}

/* Fabric Services grid */
.fabrichomeservices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-auto-rows: minmax(200px, auto);
  gap: 28px;
  padding-bottom: 50px;
}

.fabrichomeservice-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px; /* Adjust as needed */
  display: flex;
  align-items: flex-end;
}
/* Card positioning */
.fabrichomeservice-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2; /* Takes 2 row spaces */
}

.fabrichomeservice-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.fabrichomeservice-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.fabrichomeservice-card:nth-child(4) {
  grid-column: 1 / span 2; /* Spans 2 columns */
  grid-row: 3 / span 2; /* Starts at row 2, takes 2 rows */
  margin-left: 25%; /* Overlap amount - adjust based on your card position */
  margin-right: 25%; /* Overlap amount - adjust based on your card position */
}

.fabrichomeservice-card:nth-child(5) {
  grid-column: 2 / span 3;
  grid-row: 3 / span 2;
  margin-top: 0px;
  margin-left: 25%; /* Overlap amount - adjust based on your card position */
  margin-right: 25%; /* Overlap amount - adjust based on your card position */
}
.fabrichomecard-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.fabrichomecard-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  width: 100%;
}

.fabrichomeservice-card h5 {
  color: #424242; /* Change to white for better contrast */
  margin-bottom: 15px;
  font-family: "Poppins";
  font-weight: 500;
}

.fabrichomeview-more {
  background-color: #ffffff;
  border-radius: 20px;
  color: #363636;
  font-family: "Poppins";
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: all 0.3s ease;
  padding: 8px;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row;
  align-self: flex-end;
  display: flex;
}

.fabricListHeaderContainer img {
  width: 120px;
  height: 150px;
  margin-right: 15px;
}

.fabricListHeaderContainer h1 {
  font-size: 44px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  padding-top: 40px;
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .microsofFabrictserviceListPage {
    padding: 80px 0;
  }

  .fabricListHeaderContainer h1 {
    font-size: 48px;
  }

  .fabrichomeservices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .fabrichomeservice-card {
    min-height: 450px;
  }
}

/* Medium Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .containers {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1; /* Ensure content appears above the pseudo-element */
    padding-top: 60px;
    margin-left: 20px;
  }
  .fabricListHeaderContainer h1 {
    font-size: 42px;
  }

  .fabrichomeservices-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-auto-rows: minmax(200px, auto);
    gap: 35px;
  }

  .fabrichomeservice-card {
    min-height: 400px;
  }

  .fabrichomeservice-card h5 {
    font-size: 20px;
  }
}

/* Small Desktop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .microsofFabrictserviceListPage {
    padding: 50px 0;
  }

  .fabricListHeaderContainer h1 {
    font-size: 36px;
  }

  .fabrichomeservices-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-auto-rows: minmax(200px, auto);
    gap: 30px;
  }
  /* Card positioning */
  .fabrichomeservice-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2; /* Takes 2 row spaces */
    margin-left: 20px;
  }

  .fabrichomeservice-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .fabrichomeservice-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .fabrichomeservice-card:nth-child(4) {
    grid-column: 1 / span 2; /* Spans 2 columns */
    grid-row: 3 / span 2; /* Starts at row 2, takes 2 rows */
    margin-left: 25%; /* Overlap amount - adjust based on your card position */
    margin-right: 25%; /* Overlap amount - adjust based on your card position */
  }

  .fabrichomeservice-card:nth-child(5) {
    grid-column: 2 / span 3;
    grid-row: 3 / span 2;
    margin-top: 0px;
    margin-left: 25%; /* Overlap amount - adjust based on your card position */
    margin-right: 25%; /* Overlap amount - adjust based on your card position */
  }

  .fabrichomeservice-card {
    min-height: 350px;
  }

  .fabrichomecard-content {
    padding: 20px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .microsofFabrictserviceListPage {
    padding: 40px 0;
  }

  .fabricListHeaderContainer {
    padding: 20px 0;
  }

  .fabricListHeaderContainer img {
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 50px;
  }

  .fabricListHeaderContainer h1 {
    font-size: 32px;
    padding-top: 0;
  }

  .fabrichomeservices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  /* Card positioning */
  .fabrichomeservice-card:nth-child(1) {
    grid-column: 3;
    grid-row: 1; /* Takes 2 row spaces */
    margin-right: 100px;
  }

  .fabrichomeservice-card:nth-child(2) {
    grid-column: 3;
    grid-row: 2;
    margin-right: 100px;
  }

  .fabrichomeservice-card:nth-child(3) {
    grid-column: 3;
    grid-row: 3;
    margin-right: 100px;
  }

  .fabrichomeservice-card:nth-child(4) {
    grid-column: 3; /* Spans 2 columns */
    grid-row: 4; /* Starts at row 2, takes 2 rows */
    margin-left: 0;
    margin-right: 100px;
  }

  .fabrichomeservice-card:nth-child(5) {
    grid-column: 3;
    grid-row: 5;
    margin-left: 0;
    margin-right: 100px;
  }

  .fabrichomeservice-card {
    min-height: 300px;
  }

  .fabrichomeservice-card h5 {
    font-size: 18px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .microsofFabrictserviceListPage {
    padding: 30px 0;
  }

  .fabricListHeaderContainer h1 {
    font-size: 28px;
  }

  .fabrichomeservices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fabrichomeservice-card {
    min-height: 250px;
  }

  .fabrichomeview-more {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .microsofFabrictserviceListPage {
    padding: 25px 0;
  }

  .fabricListHeaderContainer h1 {
    font-size: 24px;
    padding-top: 0;
  }

  .fabricListHeaderContainer img {
    width: 80px;
    height: 100px;
    margin-left: 25px;
  }
  .fabrichomeservices-grid {
    grid-template-columns: 2fr;
    gap: 20px;
  }
  /* Card positioning */
  .fabrichomeservice-card:nth-child(1) {
    grid-column: 3;
    grid-row: 1; /* Takes 2 row spaces */
    margin-right: 25px;
  }

  .fabrichomeservice-card:nth-child(2) {
    grid-column: 3;
    grid-row: 2;
    margin-right: 25px;
  }

  .fabrichomeservice-card:nth-child(3) {
    grid-column: 3;
    grid-row: 3;
    margin-right: 25px;
  }

  .fabrichomeservice-card:nth-child(4) {
    grid-column: 3; /* Spans 2 columns */
    grid-row: 4; /* Starts at row 2, takes 2 rows */
    margin-left: 0;
    margin-right: 25px;
  }

  .fabrichomeservice-card:nth-child(5) {
    grid-column: 3;
    grid-row: 5;
    margin-left: 0;
    margin-right: 25px;
  }

  .fabrichomeservice-card {
    min-height: 200px;
  }

  .fabrichomeservice-card h5 {
    font-size: 16px;
  }

  .fabrichomecard-content {
    padding: 15px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .fabricListHeaderContainer h1 {
    font-size: 22px;
  }

  .fabrichomeservice-card h5 {
    font-size: 15px;
  }

  .fabrichomeview-more {
    font-size: 13px;
  }
}

/*Header First Div Style*/

#microsoftFabricHeaderPage {
  background-image: url("../images/microsoftFabric/righttopbanner.png"),
    url("../images/microsoftFabric/lefttopbanner.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right, left;
  background-size: contain, contain;
  width: 100%;
  min-height: 380px;
  background-color: #caffe3;
  display: flex;
  justify-content: center;
  align-items: center;
}

#fabricHeaderContainer {
  display: flex;
  align-items: center;
  flex-direction: row;
  min-height: auto;
  padding-top: 40px;
  gap: 30px;
}

#fabricHeaderContainer img {
  width: 120px;
  height: 150px;
  margin-right: 15px;
}

#fabricHeaderContainer h1 {
  font-size: 44px;
  font-weight: 400;
  font-family: "Poppins";
  color: var(--black);
  text-align: center;
  padding-top: 40px;
}
#fabricHeaderContainer .fabriccontent {
  display: flex;
  align-items: center;
  flex-direction: row;
  min-height: auto;
  flex: 1;
}
#fabricHeaderContainer .fabricButtons {
  flex: 1;
  padding-top: 40px;
}
#fabricHeaderContainer .tag-btn {
  background-color: #7ce9b0;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #424242;
  font-size: 17px;
  font-weight: 400;
  font-family: "Poppins";
  white-space: nowrap;
  margin-bottom: 15px;
  margin-right: 10px;
  font-weight: 400;
  word-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  text-align: start;
  cursor: auto;
}
/*Responsiveness of TopBanner*/
@media (max-width: 768px) {
  #fabricHeaderContainer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }
  #microsoftFabricHeaderPage {
    background-position: bottom right, top left;
  }
}
/*second div*/
#microsoftFabricPageTopContent {
  display: block;
  background-size: cover;
  width: 100%;
  background-color: var(--thickblue);
  padding-top: 50px;
  padding-bottom: 50px;
}
/*second div Logo*/
.msfabricLogoRow {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 15px;
}

.msfabricLogoRow img {
  width: 60px;
  height: 60px;
}

.msfabricLogoRowPlus {
  font-size: 30px;
  color: var(--white);
  font-weight: bold;
}
/*second div Text Styles*/
.msfabrictopcontenttitletext {
  color: var(--orange);
  font-weight: 700;
  font-size: 38px;
  font-family: "Poppins";
}
.msfabrictopcontentsubtitletext {
  font-weight: 600;
  font-size: 30px;
  font-family: "Poppins";
  color: var(--white);
  line-height: 40px;
  padding-top: 10px;
}
.msfabrictopcontentinnertitletext {
  font-weight: 600;
  font-size: 24px;
  font-family: "Poppins";
  color: var(--white);
  line-height: 40px;
  padding-top: 10px;
}
.msfabrictopcontentbodytext {
  font-weight: 300;
  font-size: 24px;
  font-family: "Poppins";
  color: var(--white);
  line-height: 40px;
  padding-bottom: 15px;
}
.msfabrictopcontentboldbodytext {
  font-weight: 600;
  font-size: 24px;
  font-family: "Poppins";
  color: var(--white);
  line-height: 40px;
}
/*second div Button Styles*/
/* .getquote-btn {
  background-color: var(--orange);
  border: none;
  color: #363636;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  display: flex;
  gap: 10px;
} */
/*white label Text*/

.quote-buttonProgress4GL {
  background-color: #ecc94b; /* yellow background */
  color: #363636; /* dark text */
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px; /* full pill shape */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.quote-buttonProgress4GL:hover {
  background-color: #ddb635; /* darker yellow on hover */
}
#msfabricWhiteLabelContainer {
  display: flex;
  background-size: cover;
  width: 100%;
  background-color: var(--white);
  padding: 20px 0px;
  color: #002b3e;
  font-size: 32px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
/*Core Architecture*/
#msfabricCoreArchittechSection {
  display: flex;
  background-size: cover;
  width: 100%;
  background-color: #fffdf9;
  padding: 20px 0px;
  color: #002b3e;
  font-size: 30px;
  font-weight: 700;
  align-items: start;
  justify-content: start;
}
#msfabricCoreArchittechSection .core-image-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 10px;
}

#msfabricCoreArchittechSection .core-image {
  max-width: 87%;
  height: 20%;
}
/*Columne Based table with orange header color*/
#columnTableSection {
  display: block;
  background-size: cover;
  width: 100%;
  background-color: var(--thickblue);
  padding-top: 50px;
  padding-bottom: 50px;
}
#columnTableSection .title {
  color: var(--orange);
  font-size: 28px;
  font-weight: 700;
  font-family: "Poppins";
  padding-bottom: 20px;
}
/* Header Styles*/
#columnTableSection .table-col.header {
  display: flex;
  gap: 25px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}

#columnTableSection .table-col.header > div {
  background-color: #f7c948;
  color: #0e0e0e;
  font-weight: 600;
  font-size: 20px;
  font-family: "Poppins";
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}
/* Apply specific flex widths */
#columnTableSection .table-col.header > div:nth-child(1) {
  flex: 1.3;
}
#columnTableSection .table-col.header > div:nth-child(3) {
  flex: 1;
}
#columnTableSection .table-col.header > div:nth-child(2) {
  flex: 2;
}
/* Row Styles*/
#columnTableSection .table-row {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  color: var(--black20);
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins";
}

#columnTableSection .table-row > div {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
#columnTableSection .table-row > div:last-child {
  border-right: none;
}
/* Apply specific flex widths */
#columnTableSection .table-row > div:nth-child(1) {
  flex: 1.3;
}
#columnTableSection .table-row > div:nth-child(3) {
  flex: 1;
}
#columnTableSection .table-row > div:nth-child(2) {
  flex: 2;
}
/*Row Background colour */
#columnTableSection .light-blue {
  background-color: #e2f6ff;
}
#columnTableSection .light-yellow {
  background-color: #fff3c2;
}
/* Vertical line separator */
/* #columnTableSection .table-row > div:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: var(--black20);
  font-weight: 400;
} */

#columnTableSection .table-row > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 45%;
  background-color: var(--black20);
}

/* Bold for the first column */
#columnTableSection .table-row > div:first-child .boldcolText {
  font-weight: 600;
}
/*Scrollable Table*/
#columnTableSection .table-scroll-wrapper {
  overflow-x: auto;
  width: 100%;
}
#columnTableSection .table-col,
.table-row {
  display: flex;
  min-width: 600px;
}

/*Why Choose Us Styles*/
#whyChooseUsSection {
  width: 100%;
  background-color: var(--orange);
  padding-top: 50px;
  padding-bottom: 50px;
}
#whyChooseUsSection .title {
  color: #002b3e;
  font-size: 30px;
  font-weight: 700;
  font-family: "Poppins";
  padding-bottom: 20px;
}
#whyChooseUsSection .why-section {
  display: flex;
  gap: 40px;
}
#whyChooseUsSection .left-why-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#whyChooseUsSection .left-why-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: fill;
}

#whyChooseUsSection .right-why-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

#whyChooseUsSection .why-pointText {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #0e0e0e;
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins";
}

@media (max-width: 768px) {
  #whyChooseUsSection .why-section {
    flex-direction: column;
  }
}
/*LeftRight ZigZag Content*/
#msFabricServicesContainer .even-background {
  background-color: var(--lightblue);
}

#msFabricServicesContainer .odd-background {
  background-color: var(--lightblue2);
}

#msFabricServicesContainer .servicesimagetitletext {
  color: #0e0e0e;
  font-weight: 600;
  font-size: 28px;
  font-family: "Poppins";
  margin-top: 50px;
  padding-left: 40px;
}
#msFabricServicesContainer .servicesimagebodytext {
  font-weight: 400;
  font-size: 24px;
  color: #0e0e0e;
  font-family: "Poppins";
  padding-left: 60px;
  padding-right: 50px;
  line-height: 40px;
}
#msFabricServicesContainer .servicesimagesubtitletext {
  font-weight: 400;
  font-size: 24px;
  padding-top: 10px;
  color: #0e0e0e;
  font-family: "Poppins";
  padding-left: 40px;
}

#msFabricServicesContainer.whiteDivider {
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  z-index: 1;
  margin: 0;
}
#msFabricServicesContainer img.img-fluid {
  width: 100%;
  height: 100%;
  display: block;
}

#msFabricServicesContainer .mdm-description {
  text-indent: -15px; /* Bullet stays out of the text block */
}
/*zigzag info box*/
#msFabricServicesContainer .info-box {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #e1e1e1;
  padding: 25px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-family: "Poppins";
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: 700;
  color: #363636;
}

#msFabricServicesContainer .info-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#msFabricServicesContainer .info-text {
  font-weight: 400;
  color: #363636;
  flex: 1;
  font-family: "Poppins";
  font-size: 22px;
  word-break: break-word;
}
/*Expandable Content*/
#expandableContentSection {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
#expandableContentSection .expand-heading {
  font-size: 24px;
  font-weight: 700;
  color: #002b3e;
  font-family: "Poppins";
  padding-bottom: 20px;
}

#expandableContentSection .framework-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#expandableContentSection .framework-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#expandableContentSection .framework-right {
  flex: 1;
  display: block;
}
#expandableContentSection .framework-right img {
  max-width: 100%;
  /* height: 420px; */
  aspect-ratio: 4 / 2.5;
  width: 100%;
}

#expandableContentSection .expand-title {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins";
  flex-direction: column;
  flex: 1;
  gap: 15px;
}
#expandableContentSection .expand-divider {
  border: none;
  border-bottom: 2px solid hsl(199, 100%, 60%);
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
}

#expandableContentSection .expand-icon {
  font-size: 30px;
  font-weight: 500;
  font-family: "Poppins";
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-top: -8px;
}
#expandableContentSection .expand-description {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins";
}
#expandableContentSection .expand-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
}
/* Default (desktop) */
#expandableContentSection .mobile-expand-img {
  display: none;
}
/*responsiveness of Expandable*/
@media (max-width: 768px) {
  #expandableContentSection .framework-content {
    flex-direction: column;
  }
  #expandableContentSection .mobile-feature-image {
    display: block;
    margin-top: 12px;
  }

  #expandableContentSection .mobile-feature-image img {
    width: 100%;
    object-fit: cover;
  }

  #expandableContentSection .framework-right {
    display: none;
  }
}

@media (min-width: 769px) {
  #expandableContentSection .mobile-feature-image {
    display: none !important;
  }
}

/*Benefits Styles*/
#benefitsSection {
  width: 100%;
  background-color: #bdeaff;
  padding-top: 50px;
  padding-bottom: 50px;
}

#benefitsSection .benefits-heading {
  font-size: 24px;
  font-weight: 600;
  color: #002b3e;
  font-family: "Poppins";
  padding-bottom: 20px;
}
#benefitsSection .benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#benefitsSection .row {
  display: flex;
  gap: 20px;
}

#benefitsSection .top-row {
  flex-direction: row;
}

#benefitsSection .bottom-row {
  flex-direction: row;
}

#benefitsSection .stacked-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 2;
  margin-right: -15px;
}

/* Box Layout */
#benefitsSection .benefit-box {
  flex: 1;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Smooth full-box shadow */
  display: flex;
  align-items: start;
}
#benefitsSection .benefit-box-col {
  flex: 1;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Smooth full-box shadow */
  /* display: flex; */
  flex-direction: column;
  align-items: start;
}
#benefitsSection .benefit-content-vertical {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

#benefitsSection .benefit-content-horizontal {
  display: flex;
  align-items: start;
  gap: 16px;
}

/* Image */
#benefitsSection .benefit-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Text */
#benefitsSection .benefit-texts h1 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins";
  color: #363636;
}

#benefitsSection .benefit-texts p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins";
  color: #2d2d2d;
  margin-bottom: 0px;
}
/*Benefits Responsiveness*/
@media (max-width: 768px) {
  #benefitsSection .row {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  #benefitsSection .benefit-box,
  #benefitsSection .benefit-box-col {
    width: 100%;

    flex: unset;
  }

  #benefitsSection .stacked-boxes {
    margin-right: 0;
    width: 100%;
    margin: 0px !important;
    padding: 0px;
  }

  #benefitsSection .benefit-content-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  #benefitsSection .benefit-content-vertical {
    align-items: flex-start;
    text-align: left;
  }

  #benefitsSection .benefit-texts {
    margin-top: 10px;
  }
}

/* Key Capabilities Section */
.key-capabilities-section {
  padding: 30px 0;
  background-color: #002b3e;
}

.section-title {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 700;
  color: #e8c63d;
  margin-bottom: 40px;
}

.capabilities-container {
  display: flex;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 3;
}
.engagementStyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex: 3;
}

.capabilities-image {
  flex: 1;
  padding-bottom: 25px;
}

.grid-header {
  font-family: "Poppins";
  padding: 16px;
  font-weight: 600;
  color: #202020;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-right: 20px;
  height: fit-content;
}

.grid-item {
  font-family: "Poppins";
  padding: 16px;
  color: #202020;
  font-weight: 400;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-right: 20px;
  height: fit-content;
}

/* Remove bottom border from last two items */
.capabilities-grid div:nth-last-child(-n + 2) {
  border-bottom: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 12px;
  gap: 10px;
}
.engagementStyle-grid div:nth-last-child(-n + 3) {
  border-bottom: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 12px;
  gap: 10px;
}

/* Alternate row background colors */
.capabilities-grid div:nth-child(n + 3),
.capabilities-grid div:nth-child(n + 4) {
  background-color: #f9f9f9;
}
.engagementStyle-grid div:nth-child(n + 3),
.engagementStyle-grid div:nth-child(n + 4) {
  background-color: #f9f9f9;
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .key-capabilities-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Medium Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .capabilities-container {
    gap: 20px;
  }
}

/* Small Desktop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .grid-header,
  .grid-item {
    padding: 14px;
  }
  .capabilities-image {
    order: 1; /* This keeps your desired order */
    margin-top: 10px;
    margin-bottom: 10px; /* Adjust spacing as needed */
    height: auto; /* Let the content determine height */
    max-height: 500px; /* Set a maximum height limit */
    width: 98%; /* Ensure it takes full width */
    overflow: hidden; /* Prevent content from overflowing */
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .key-capabilities-section {
    padding: 50px 0;
  }

  .capabilities-container {
    flex-direction: column;
  }

  .capabilities-image {
    order: 1; /* This keeps your desired order */
    margin-top: 10px;
    margin-bottom: 10px; /* Adjust spacing as needed */
    height: auto; /* Let the content determine height */
    max-height: 300px; /* Set a maximum height limit */
    width: 98%; /* Ensure it takes full width */
    overflow: hidden; /* Prevent content from overflowing */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* .capabilities-grid,
  .engagementStyle-grid {
    grid-template-columns: 1fr 1fr;
  } */
  .grid-header,
  .grid-item {
    padding: 14px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .key-capabilities-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .capabilities-grid,
  .engagementStyle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grid-header,
  .grid-item {
    padding: 3px;
  }
  .capabilities-image {
    order: 1; /* This keeps your desired order */
    height: auto; /* Let the content determine height */
    max-height: 725px; /* Set a maximum height limit */
    width: 98%; /* Ensure it takes full width */
    overflow: hidden; /* Prevent content from overflowing */
    display: flex;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .key-capabilities-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .grid-header,
  .grid-item {
    padding: 7px;
    font-size: 14px;
  }
  .capabilities-image {
    order: 1; /* This keeps your desired order */
    height: auto; /* Let the content determine height */
    max-height: 725px; /* Set a maximum height limit */
    width: 98%; /* Ensure it takes full width */
    overflow: hidden; /* Prevent content from overflowing */
    display: flex;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .section-title {
    font-size: 20px;
  }

  .grid-header,
  .grid-item {
    padding: 7px;
    font-size: 13px;
  }
}

/* Use Cases Section - Custom Layout */
.use-cases-section {
  padding: 60px 0;
  background-color: #0e0e0e;
}

.use-cases-section .section-title {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 700;
  color: #e8c63d;
  margin-bottom: 40px;
  text-align: left;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6-column grid for precise control */
  gap: 20px;
}

.use-case-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  align-items: flex-start;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  /* min-height: 250px;
  max-width: 300px; */
}

.use-case-icon {
  min-width: 60px;
  padding-bottom: 20px;
}

.use-case-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.use-case-content {
  flex: 1;
}

.use-case-text {
  color: #363636;
  font-family: "Poppins";
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  margin: 0;
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .use-cases-section {
    padding: 80px 0;
  }

  .use-cases-section .section-title {
    font-size: 32px;
  }
}

/* Medium Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .use-cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small Desktop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .use-cases-grid {
    grid-template-columns: repeat(0, 1fr);
  }

  .use-case-icon img {
    width: 70px;
    height: 70px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .use-cases-section {
    padding: 50px 0;
  }

  .use-cases-grid {
    grid-template-columns: repeat(0, 1fr);
  }

  .use-case-card {
    padding: 18px;
  }

  .use-case-icon img {
    width: 65px;
    height: 65px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .use-cases-section {
    padding: 40px 0;
  }

  .use-cases-section .section-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .use-case-card {
    padding: 15px;
  }

  .use-case-icon {
    padding-bottom: 15px;
  }

  .use-case-icon img {
    width: 60px;
    height: 60px;
  }

  .use-case-text {
    font-size: 15px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .use-cases-section {
    padding: 30px 0;
  }

  .use-cases-section .section-title {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
  }

  .use-cases-grid {
    grid-template-columns: repeat(0, 1fr);
    gap: 12px;
  }

  .use-case-card {
    padding: 15px;
  }

  .use-case-icon {
    padding-bottom: 12px;
    margin: 0 auto;
  }

  .use-case-icon img {
    width: 55px;
    height: 55px;
  }

  .use-case-text {
    font-size: 14px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 320px) {
  .use-cases-section .section-title {
    font-size: 20px;
  }

  .use-case-text {
    font-size: 12px;
  }
  .use-case-card {
    padding: 15px;
    align-items: center;
    display: flex;
  }
  .use-cases-grid {
    grid-template-columns: repeat(0, 1fr);
    gap: 12px;
  }
  .use-case-icon {
    padding-bottom: 12px;
    margin: 0 auto;
  }

  .use-case-icon img {
    width: 40px;
    height: 40px;
  }
}

/* Talk to Governance Section - Custom Layout */
.talktogovernance-section {
  padding: 60px 0;
  background-color: #002b3e;
}

.talktogovernance-section .talktogovernance-title {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

.talktogovernance-section .talktogovernance-desc {
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: left;
  max-width: 600px;
}
.talktogoverimg {
  max-width: 100%;
  max-height: 100%;
  min-width: 100%;
  max-width: 100%;
  background-size: cover;
}
/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .talktogovernance-section {
    padding: 80px 0;
  }

  .talktogovernance-section .talktogovernance-title {
    font-size: 32px;
  }
}

/* Medium Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .talktogovernance-section .talktogovernance-title {
    font-size: 30px;
  }

  .talktogovernance-section .talktogovernance-desc {
    font-size: 18px;
  }
}

/* Small Desktop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .talktogovernance-section {
    padding: 50px 0;
  }

  .talktogovernance-section .talktogovernance-title {
    font-size: 26px;
  }

  .talktogovernance-section .talktogovernance-desc {
    font-size: 17px;
    max-width: 500px;
  }
  .talktogoverimg {
    max-width: 100%;
    /* max-height: 70%; */
    min-width: 100%;
    /* min-height: 70%; */
    background-size: cover;
    padding-bottom: 80px;
    padding-top: 40px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .talktogovernance-section {
    padding: 40px 0;
  }

  .talktogovernance-section .talktogovernance-title {
    font-size: 24px;
    text-align: left;
  }

  .talktogovernance-section .talktogovernance-desc {
    font-size: 16px;
    text-align: left;
  }
  .talktogoverimg {
    max-width: 100%;
    /* max-height: 70%; */
    min-width: 100%;
    /* min-height: 70%; */
    background-size: cover;
    padding-bottom: 80px;
    padding-top: 40px;
    padding-right: 40px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .talktogovernance-section {
    padding: 30px 0;
  }

  .talktogovernance-section .talktogovernance-title {
    font-size: 22px;
    text-align: left;
  }

  .talktogovernance-section .talktogovernance-desc {
    font-size: 15px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .talktogovernance-section {
    padding: 25px 0;
  }

  .talktogovernance-section .talktogovernance-title {
    font-size: 20px;
    text-align: left;
  }

  .talktogovernance-section .talktogovernance-desc {
    font-size: 14px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  .talktogoverimg {
    max-width: 100%;
    /* max-height: 70%; */
    min-width: 100%;
    /* min-height: 70%; */
    background-size: cover;
    padding-bottom: 80px;
    padding-top: 40px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .talktogovernance-section .talktogovernance-title {
    font-size: 18px;
  }

  .talktogovernance-section .talktogovernance-desc {
    font-size: 13px;
  }
  .talktogoverimg {
    max-width: 100%;
    /* max-height: 70%; */
    min-width: 100%;
    /* min-height: 70%; */
    background-size: cover;
    padding-bottom: 80px;
    padding-top: 40px;
  }
}
/* our accelerator section */
.ouraccelerators-section {
  padding: 60px 0;
  background-color: #0e0e0e;
}
.accelerators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 6-column grid for precise control */
  gap: 20px;
}
.accelerator-content {
  color: #363636;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 18px;
}
.accelerator-text {
  color: #363636;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 18px;
}
.accelerator-card {
  padding-left: 12px;
  padding-top: 12px;
  border-radius: 12px;
}
.accelerator-card .accelerator-icon {
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
}
.acc-image {
  height: 120px;
  width: 120px;
}
.acc-section-title {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 700;
  color: #e8c63d;
  margin-bottom: 40px;
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .ouraccelerators-section {
    padding: 80px 0;
  }

  .acc-image {
    height: 140px;
    width: 140px;
  }
}

/* Medium Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .accelerators-grid {
    gap: 15px;
  }

  .acc-image {
    height: 110px;
    width: 110px;
  }
}

/* Small Desktop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .accelerators-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .accelerator-content,
  .accelerator-text {
    font-size: 16px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .ouraccelerators-section {
    padding: 50px 0;
  }

  .accelerators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .acc-image {
    height: 100px;
    width: 100px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .ouraccelerators-section {
    padding: 40px 0;
  }

  .accelerator-content,
  .accelerator-text {
    font-size: 15px;
  }

  .acc-image {
    height: 90px;
    width: 90px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .ouraccelerators-section {
    padding: 30px 0;
  }

  .accelerators-grid {
    grid-template-columns: 1fr;
    /* max-width: 350px; */
    margin: 0 auto;
    gap: 12px;
  }

  .accelerator-card {
    padding: 15px;
  }

  .accelerator-content,
  .accelerator-text {
    font-size: 14px;
  }

  .acc-image {
    height: 80px;
    width: 80px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .accelerator-content,
  .accelerator-text {
    font-size: 13px;
  }

  .acc-image {
    height: 70px;
    width: 70px;
  }
}

/*<ey Benefits Styles*/
#keybenefitsSection {
  width: 100%;
  background-color: #bdeaff;
  padding-top: 50px;
  padding-bottom: 50px;
}

#keybenefitsSection .keybenefits-heading {
  font-size: 24px;
  font-weight: 600;
  color: #002b3e;
  font-family: "Poppins";
  padding-bottom: 20px;
}
#keybenefitsSection .keybenefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#keybenefitsSection .row {
  display: flex;
  gap: 20px;
}

#keybenefitsSection .top-row {
  flex-direction: row;
}

#keybenefitsSection .bottom-row {
  flex-direction: row;
}

#keybenefitsSection .stacked-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 2;
  margin-right: -15px;
}

/* Box Layout */
#keybenefitsSection .keybenefit-box {
  flex: 1;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Smooth full-box shadow */
  display: flex;
  align-items: start;
}

#keybenefitsSection .keybenefit-content-horizontal {
  display: flex;
  align-items: start;
  gap: 16px;
}
#keybenefitsSection .keybenefitrow-content-horizontal {
  align-items: start;
  gap: 16px;
}

/* Image */
#keybenefitsSection .keybenefit-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#keybenefitsSection .rowkeybenefit-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
#keybenefitsSection .keybenefit-texts {
  max-width: 500px;
}

/* Text */
#keybenefitsSection .keybenefit-texts h1 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins";
  color: #363636;
  display: inline; /* or inline-block */
}

#keybenefitsSection .keybenefit-texts p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins";
  color: #2d2d2d;
  margin-bottom: 0px;
  display: inline; /* or inline-block */
}
