/* Start custom CSS for html, class: .elementor-element-e07be56 */#card {
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  overflow: hidden;
  display: none;
  align-items: center;
  gap: 30px;
}
.wave {
  position: Relative;
  transform: rotate(90deg);
  left: -26px;
  width: 80px;
  fill: #04e4003a;
}
.icon-container {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #04e40048;
  border-radius: 50%;
  margin-left: 8px;
}
.icon {
  width: 40px;
  height: 40px;
  color: #269b24;
}
.message-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
}
.message-text,
.sub-text {
  margin: 0;
  cursor: default;
}
.message-text {
  color: #269b24;
  font-size: 25px;
  font-weight: 700;
}
.sub-text {
  font-size: 20px;
  color: #555;
}
.cross-icon {
  width: 50px;
  height: 50px;
  color: #555;
  cursor: pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f5f1357 */#solar-title{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container to Align Cards Side by Side */
.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* Card Style */
.card {
    width: 50%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Initially Hidden Details */
.card-content {
    display: none;
}

/* Button Style */
.card button {
    padding: 10px 15px;
    border: none;
    background: #3A833E;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.card button:hover {
    background: #D26925;
}

.below-text {
    

    color: #3A833E;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
}
.list-text{
    color: #3A833E;
    font-size: 20px;
    font-weight: 500;
}


@media screen and (max-width: 500px) {
    .card-container {
    display:block;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.card {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
}/* End custom CSS */