/* heading css */
.heading {
  padding: 60px 20px;
  text-align: center;
  background-color: white;
}

.heading h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C28B28;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 10px;
}


/* sap s/4-hana css */

.sap-hana {
  width: 100%;
  /* background: linear-gradient(to right, #0a2c4577 0%, #e8f0fb 25%, #0a2c4597 110%); */
  background-color: white;
  color: black;
  margin: 20px 0;
  box-shadow: 3px 4px 3px rgba(0, 0, 0, 0.1);
}


.sap-hana .container {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  box-shadow: 3px 4px 3px rgba(0, 0, 0, 0.1);
}

.sap-hana .container .content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 5px;
  position: relative;
}

.sap-hana .content {
  padding: 30px;
  width: 50%;
  height: 100%;
  line-height: 1.8;
  font-size: 1rem;
  color: black;
}

.sap-hana .content p {
  margin-bottom: 15px;
  text-align: justify;
  color: black;
}

.sap-hana .img {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  object-fit: cover;
}

.sap-hana .img img {
  width: 100%;
  height: 100%;
}






/* sap clouds css */

.sap-cloud {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  padding: 60px 4%;
  background: linear-gradient(to bottom, rgb(1, 15, 51), rgba(21, 61, 114, 0.723), rgb(1, 19, 56));
  width: 100%;
  box-sizing: border-box;
}

.sap-cloud .cloud {
  width: 600px;
  background-color: white;
  /* flex: 1; */
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .sap-cloud .cloud:hover {
  transform: translateY(-10px);
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
} */

.sap-cloud .cloud img {
  border-radius: 5px;
  background-color: black;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.sap-cloud .cloud h4 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a2a3a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sap-cloud .cloud p {
  text-align: justify;
  font-size: .9rem;
  line-height: 1.7;
  color: black;
}




/* what we do section css */

.We_Do {
  margin-bottom: 30px;
  width: 100%;
  /* background: linear-gradient(to right, rgba(21, 61, 114, 0.723), rgb(1, 19, 56)); */
  background-color: white;
  color: black;
  font-family: "Poppins", sans-serif;
  box-shadow: 3px 4px 3px rgba(0, 0, 0, 0.1);
}



.We_Do .container {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.We_Do .img {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.We_Do .img img {
  width: 100%;
  height: 100%;
}

.We_Do .text {
  padding-right: 20px;
  height: 100%;
  width: 50%;
  line-height: 1.8;
  font-size: 1rem;
  color: black;
}

.We_Do .text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 5px;
  position: relative;
}

.We_Do .text p {
  text-align: justify;
}