.search_box {
    text-align: center;
    margin: 20px 0;
}
.search_box input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.search_box button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    background-color: #275c6a;
    color: white;
    border-radius: 5px;
}
.pricing_section {
    padding: 50px 0;
}
.pricing_box {
   
    padding: 0px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 400px; /* Ensure cards do not exceed this height */
}
.pricing_box img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Restrict image height to fit within the card */
    object-fit: cover;
    border-radius: 10px;
}
.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    background-color: #275c6a;
    color: white;
    margin-bottom: 10px;
}
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-body p {
    margin: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to two lines */
    -webkit-box-orient: vertical;
    white-space: normal;
    font-size: 14px; /* Default font size */
}
.card-body h6 {
    font-size: 1.25rem;
    margin: 10px 0;
}
@media (max-width: 768px) {
    .pricing_box {
        max-height: 500px; /* Increase height for smaller screens */
    }
}
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #275c6a; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
@media (max-width: 768px) {
    .pricing_box {
        max-height: 500px; /* Increase height for smaller screens */
    }
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f3fafa;
  margin: 0;
  padding: 0;
}

.membership {
  text-align: center;
  padding: 40px 20px;
}

.membership h2 {
  font-size: 28px;
  color: #072A38;
  margin-bottom: 30px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.06);
  width: 300px;
  padding-bottom: 20px;
}

.card-header {
  background-color: #1F5860;
  color: white;
  padding: 12px 0;
  font-weight: 600;
  font-size: 18px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  text-align: left;
}

.card ul li {
  font-size: 16px;
  color: #072A38;
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  line-height: 1.4;
}
.how-it-works {
  background-color: #f7fdfd;
  padding: 60px 20px;
  text-align: left;
}

.how-it-works h2 {
  font-size: 28px;
  color: #122e3d;
  margin-bottom: 20px;
  font-weight: 700;
}

.how-box {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.how-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background-color: #225c65;
}

.how-image, .how-steps {
  padding: 20px;
  flex: 1;
  min-width: 300px;
}

.how-image img {
  max-width: 100%;
  height: auto;
}

.how-steps ol {
  list-style: decimal;
  text-align: left;
  font-size: 17px;
  line-height: 1.7;
  color: #111;
  /* padding-left: 10px; */
}

@media (max-width: 768px) {
  .how-box {
    flex-direction: column;
    align-items: center;
  }

  .how-steps {
    text-align: center;
  }

  .how-steps ol {
    padding-left: 0;
  }
}
.about-app {
  background-color: #0a4343;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.about-text {
  font-weight: 600; /* or 700 for extra bold */
}

.about-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0a2c2d;
}

.about-header p {
  color: #333;
  max-width: 950px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 600; /* <-- Added this line */
}


.about-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 180px;
  min-width: 180px;
  min-height: 180px;
  max-width: 180px;
  max-height: 180px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  background-color: white;
  font-weight: bold;
}

.stat-card h3, .stat-card p, .stat-card .icon {
  font-weight: bold !important;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin: 0 auto 15px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.stat-card p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #022c3f;
}

/* Icon Colors */
.icon.purple {
  background-color: #e8e2fc;
}

.icon.peach {
  background-color: #ffe7e1;
}

.icon.red {
  background-color: #fbeaea;
}

.icon.green {
  background-color: #e6f4ea;
}

.about-app-heading {
  font-family: 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0d2c3d;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-number {
  font-weight: 700;
  font-size: 1.8rem;
}

.stat-label {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.about-banner {
  background-color: #2a636d; 
  padding: 20px 0;
  text-align: center;
}

.about-banner h2 {
  color: white;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  width: 150px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 5%;
  text-align: center;
  font-size: 16px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20b858;
}

