#middle-bg-Content-wrapper {
  display: inline-block;
  background: url(img/background-bottom-pic.jpg) no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100%;
  padding-bottom: 30px;
}

.landing-page {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #303030;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(143, 206, 0, 0.8);
  font-family: Arial, Helvetica, sans-serif;
}

.landing-header {
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.landing-header h1 {
  font-size: 1.8em;
  font-family: Arial, Helvetica, sans-serif;
  color: #8fce00;
  margin-bottom: 10px;
}

.landing-header p {
  font-size: 1.1em;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.expertise,
.why-choose-us,
.cta {
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8em;
  color: #f44336;
  border-left: 4px solid #1e88e5;
  padding-left: 10px;
  margin-bottom: 15px;
}


ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  background-color: #b2beb5;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  border-left: 4px solid #1e88e5;
  color: #000;
}

ul li strong {
  color: #1e88e5;
}


.cta p {
  text-align: center;
  font-size: 1.2em;
  color: #1e88e5;
  padding: 20px;
  background-color: #e3f2fd;
  border-radius: 5px;
  border: 1px solid #bbdefb;
}

.cta p:hover {
  background-color: #bbdefb;
  cursor: pointer;
}

@media (max-width: 768px) {
  .landing-page {
    padding: 10px;
  }

  .landing-header h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }
}

/* Accordion styling now ----------------------------------------- */
.accordion-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Allows wrapping to the next row */
  gap: 20px;
}

.accordion-item {
  width: 200px;
  height: 200px;
  background-color: #fff;
  color: #033cdb;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-shadow: 8px 10px 10px #8fce00;
}

.worldview {
  background-image: url("img/worldviewlogo.png"); /* Add the image path */
  background-size: contain; /* Make the image cover the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

.cefakkwp {
  background-image: url("img/cefakkwplogo.png"); /* Add the image path */
  background-size: contain; /* Make the image cover the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

.catrun {
  background-image: url("img/catrunlogo.png"); /* Add the image path */
  background-size: contain; /* Make the image cover the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

.eaglesolutions {
  background-image: url("img/eaglepesaicon.png"); /* Add the image path */
  background-size: contain; /* Make the image cover the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  text-align: center;
}

.cims {
  background-image: url("img/cims.png"); /* Add the image path */
  background-size: contain; /* Make the image cover the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  text-align: center;
}

.speak2text {
  background-image: url("img/Chat.png"); /* Add the image path */
  background-size: contain; /* Make the image cover the entire div */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  text-align: top;
  color: blue;
}

.accordion-item:hover {
  transform: scale(1.1);
  /* background-image: none; */
}

.accordion-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item:hover img {
  opacity: 0.9;
}

.accordion-item .accordion-text {
  z-index: 1;
  font-size: 18px;
  font-weight: bold;
}

.accordion-item:hover .accordion-text {
  display: none;
}

.accordion-item .accordion-hover-text {
  position: absolute;
  z-index: 1;
  bottom: 40%;
  font-size: 14px;
  display: none;
  color: #000;
}

.accordion-item:hover .accordion-hover-text {
  display: block;
}

/* End of Accordion Styling -------------------------------------- */

/* Partner Store Section styling ************************************ */
.store-content- {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2em;
  width: 80%;
  margin: 0px auto;
}
/* End of Partner Store Section styling ************************************ */
