/** @format */
#combination {
  background: linear-gradient(to bottom, rgb(23 202 92 / 8%), rgba(255, 255, 255, 0.1)) !important;
}

#combination header {
  background: unset !important;
}

#services {
}

#services .main {
  display: flex;
  justify-content: space-between;
  width: 100%;

}

#services .main .left {
  width: 29%;

  margin-bottom: 25px;
}

#services .main .left h3 {
  font-size: 32px;
  font-weight: 500;
}

#services .main .right {
  display: flex;
  flex-direction: row-reverse;
  width: 69%;
 
  margin-bottom: 25px;
}

#services .main .right form {
  border: 1px solid;
  display: flex;
  padding: 5px;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  border-style: none;
  background: #fff;
  width: 48%;
  box-shadow: 0px 4px 50px 0px #25252514;
}

#services .main .right form .flex {
  width: 69%;
}

#services .main .right form .flex input {
  border-style: none;
  padding: 10px;
  width: 90%;
  outline: none;
  border-radius: 100px;
}

#services .main .right .button {
  width: 29%;
}

#services .main .right .button button {
  padding: 5px;
  width: 100%;
  background-color: #0081c9;
  color: white;
  border-radius: 100px;
  border-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
}

#services .main .right .button button .image {
  width: 20%;
  display: flex;
}

#services .main .right .button button .image img {
  width: 100%;
}
#services .main .right .button p {
}

#boxes {

  /* background: #F5F5F5; */
}
#boxes .main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#boxes .main .card {
  margin-top: 40px;
  width: 100%;
}
#boxes .main .card ul {
 display: flex;
  flex-wrap: wrap;
  /* justify-content: space-around; */
  align-items: center;
  gap:20px;

}
#boxes .main .card ul li {
  background: url(../images/about-us/Shape.png);
  background-position: left;
  background-repeat: no-repeat;
  text-align: center;
  border-radius: 20px;
  transition: background 0.5s ease-in-out;
  background-color: white;
}
#boxes .main .card ul li:hover {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(22, 157, 79, 0.1) 100%
    ),
    url(../images/about-us/Shape.png);
}
#boxes .main .card ul .content {
  width: 31%;
  margin-bottom: 30px;
}

#boxes .main .card ul .content li {
  padding: 31px;
  cursor: pointer;
}
#boxes .main .card ul li h3 {
  text-align: left;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 20px;
}
#boxes .main .card ul li p {
  text-align: left;
  line-height: 27px;
  margin-bottom: 138px;
}
#boxes .main .card ul li .down {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
#boxes .main .card ul li .down .learn {
  width: 50%;
  text-align: left;
}
#boxes .main .card ul li .down .learn a {
  color: #0081c9;
  font-size: 16px;
  font-weight: 500;
}
#boxes .main .card ul li .down .button {
  width: 47%;
}
#boxes .main .card ul li .down .button button {
  width: 100%;
  padding: 7px;
  border-radius: 8px;
  border-style: none;
  background-color: #0081c9;
  color: white;
  cursor: pointer;
}
#boxes .main .bottom {
  margin-top: 50px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#boxes .main .bottom .button {
  /* width: 10%; */
  display: flex;
  gap: 20px;
}
#boxes .main .bottom a {
  width: 150px;
  color: black;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#boxes .main .bottom button p {
  font-size: 12px;
}
#boxes .main .bottom .button .arrow {
  width: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#boxes .main .bottom .button .arrow img {
  width: 100%;
}


/* Loading container */
.loading-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Spacing between text and spinner */
}

/* Loading text */
.loading-text {
  font-size: 20px;
  color: #333;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #e0e0e0; /* Light gray background */
  border-top: 3px solid #0081c9; /* Green spinner color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}




@media (max-width: 1024px) {
  #services .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #services .main .left,
  #services .main .right {
    width: 48%;
    margin-bottom: 20px;
  }

  #services .main .right form {
    width: 80%;
  }

  #boxes .main .card ul .content {
    width: 45%;
  }
  #boxes .main .bottom .button {
    
  }
  #boxes .main .card ul li h3 {
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #boxes .main .card ul .content li {
    padding: 26px;
  }
}

/* Small screens (max-width: 768px) */
@media (max-width: 768px) {
  #services .main .right form {
    width: 100%;
  }

  #services .main .right form .flex input {
    width: 80%;
    margin-bottom: 0px;
  }

  #services .main .right .button {
    width: 42%;
  }
  #services .main .right form .flex {
    width: 69%;
  }
  #boxes .main .card ul .content {
    width: 45%;
  }
  #boxes .main .card ul li .down .button button {
    width: 100%;
    padding: 7px;
    border-radius: 8px;
    border-style: none;
    background-color: #0081c9;
    color: white;
    cursor: pointer;
  }
  #boxes .main .card ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
 
  }
  #boxes .main .card ul .content li {
    padding: 18px;
  }
}

@media (max-width: 600px) {
  #services .main .left h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  #services .main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
   
}
#services .main .left{
  width: 100%;
  margin-bottom: unset;
} 
#services .main .right {
  width: 100%;
  margin-bottom: unset;
}
#services .main .right .button button .image {
  width: 17%;
  display: flex
;
}
#services .main .right .button {
  width: 30%;
}
#services .main .right form .flex input {
  padding: 7px;
}
  #boxes .main .card ul li .down .learn {
  }
  #boxes .main .card ul li .down .learn h4 {
    color: green;
  }
  #boxes .main .card ul li .down .button {
  }
  #boxes .main .card ul li .down .button button {
  }
  #boxes .main .bottom {
    margin-top: 50px;
  }
  #boxes .main .bottom button {
    background-color: darkgreen;
  }
  #boxes .main .card ul .content {
    width: 45%;
  }
  #boxes .main .card ul li h3 {
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #boxes .main .card ul li p {
    font-size: 14px;
    text-align: left;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .loading-text {
    font-size: 17px;
    color: #333;
}
}

/* Extra-small screens (max-width: 480px) */
@media (max-width: 480px) {
  #services .main .left h3 {
    font-size: 22px;
  
}

  #services .main .right form {
    width: 100%;
  }

  #boxes .main .card ul li h3 {
    font-size: 16px;
  }

  #boxes .main .card ul li p {
    font-size: 14px;
  }

  #boxes .main .bottom .button {
    font-size: 14px;
  }
  #boxes .main .card ul li .down .learn a {
    color: #0081c9;
    font-size: 13px;
    font-weight: 500;
  }
  #boxes .main .card ul .content {
    width: 100%;
  }
  .loading-text {
    font-size: 15px;
    color: #333;
}
}


/* Spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#no-results{
  display:none;
}