.blue-button {
  background: linear-gradient(to right, #00399F, #004FDB, #0088FF);
  color: white;
  padding: 20px 30px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
  margin-right: 15px;
  margin-top: 15px;
}

.blue-button2 {
  background-color: #ffffff;
  color: #004FDB;
  border: 1.5px solid #004FDB;
  padding: 18px 30px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  margin-top: 15px;
}

.blue-button2:hover {
  background-color: #E8F4FF;
  color: #004FDB; /* Change the text color back to the original color */
}

.blue-button:hover {
  animation: buttonAnimation 1.5s infinite;
  background-size: 200% auto;
}

@keyframes buttonAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.word-container {
    padding-top: 40px;
}

.paragraph {
  line-height: 5.0;
  color: #737880;
  max-width: 200px;
  font-size: 24px;
}

#trust-us {
  color: #737880;
  margin-top: 30px;
}

.trusted-photos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 20%;
}

.line {
  width: 15%;
  height: 1px;
  background-color: #E9E9E9;
  margin-top: 40px;
}

.text-image-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
}

.word-container {
  flex: 1;
  max-width: 53%;
  font-weight: normal;
  line-height: 1.0;
  color: #535353;
  box-sizing: border-box;
  font-size: 24px;
  padding-bottom: 60px;
}

.photo-container {
  flex: 2;
  display: flex;
  justify-content: flex-start;
  max-width: 45%;
}

.responsive-image {
  max-width: 100%;
  height: auto;
  text-align: right;
}

.stars-container {
  display: flex;
  flex-direction: row; /* Set flex-direction to row */
  margin-top: 5px;
  margin-right: 50px;
  fill: #FFC110;
}

.container {
  display: flex;
  align-items: center;
  font-weight: normal;
  justify-content: space-between;
  margin-bottom: 40px; /* Increase the margin-bottom value for more space */
}


/* Add any additional styling as needed */


.word {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  color: blue;
  display: inline-block;
  font-weight: normal;
  line-height: 1.0px;
  padding-bottom: 40px;
  padding-top: 40px;
  overflow-wrap: break-word; /* Updated line */
  margin-top: 20px;
}

.paragraph{
  font-weight: normal;
  line-height: 2.0;
  color: #737880;
  max-width: 200px;
}

.word {
  display: none;
  white-space: nowrap; /* Added line */
  font-family: "Inter", sans-serif;
  font-size: 35px;
  line-height: 0.9px;
  animation: popUpWords 10s infinite;
  padding-top: 20px;
  margin-top: 20px;
  overflow-wrap: break-word; /* Updated line */
}

.word.visible {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 35px;
  font-weight: bold;
  padding-bottom: 20px;
  padding-top: 20px;
}

#text-image-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;/* Add desired padding value */
  line-height: 1.0px;
  font-weight: bold;
}

h1 {
  font-weight: bold;
  font-family: "Inter", sans-serif;
  font-size: 40px;
}

#before-text, #after-text {
  font-family: "Inter", sans-serif;
  font-size: 35px;
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 40px;
  padding-top: 40px;
  overflow-wrap: break-word;
  margin-top: 20px;
}

.swiper-slide.active {
  background-color: blue;
}
/* Add the following CSS for the loop effect */
.loop-effect {
  animation: loopAnimation 3s;
}

@keyframes popUpWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  20% {
    opacity: 1;
    transform: translateY(0%);
  }
  33% {
    opacity: 1;  
    transform: translateY(0%);
  }
  53% {
    opacity: 1;
    transform: translateY(-100%);
    color: #0D8CFF;
  }
  100% {
    opacity: 0;
  }

@media screen and (max-width: 600px) {
  padding-top: 30px 26px;
}
   
.star {
  max-width: 5px;
  height: auto;
  margin-right: 10px;
  fill: yellow;
}


