.elementor-11 .elementor-element.elementor-element-0d90aa8{--display:flex;--min-height:0px;--margin-top:-13px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-11 .elementor-element.elementor-element-0d90aa8.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-11 .elementor-element.elementor-element-f780981{--display:flex;}.elementor-11 .elementor-element.elementor-element-ba3a453{--display:flex;}.elementor-11 .elementor-element.elementor-element-73f296a{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-11 .elementor-element.elementor-element-7e61dbd{--display:flex;}.elementor-11 .elementor-element.elementor-element-8cf9023{--display:flex;}@media(max-width:767px){.elementor-11 .elementor-element.elementor-element-73f296a{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) -37px;}}@media(min-width:768px){.elementor-11 .elementor-element.elementor-element-0d90aa8{--width:99.749%;}}/* Start custom CSS for html, class: .elementor-element-73f296a *//* --- Premium Home Page Section (Equal Height Updated) --- */
.modern-home-section {
 
  padding: 90px 20px;
  font-family: "Inter", "Poppins", sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: stretch; /* Ensures equal height for cards */
}

.update-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: all 0.35s ease;
  animation: fadeInUp 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* balances inside content */
  height: 100%; /* ensures cards stretch equally */
  min-height: 520px; /* maintains solid height consistency */
}

.update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(31, 180, 106, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.card-header .icon {
  font-size: 2rem;
}

.card-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1fb46a;
  margin: 0;
}

.card-content,
.news-list {
  flex-grow: 1;
}

.card-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.card-content a {
  color: #007bff;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.news-item {
  border-left: 4px solid #1fb46a;
  padding-left: 14px;
  margin-bottom: 20px;
  background: rgba(31, 180, 106, 0.03);
  border-radius: 6px;
  padding: 14px 16px;
  transition: background 0.3s ease;
}

.news-item:hover {
  background: rgba(31, 180, 106, 0.08);
}

.news-item .date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 6px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .update-card {
    padding: 28px;
    min-height: auto;
  }
  .card-header h2 {
    font-size: 1.5rem;
  }
}
.update-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: all 0.35s ease;
  animation: fadeInUp 1s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.card-content {
  flex-grow: 1; /* pushes button or footer to bottom */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content ul {
  flex-grow: 1;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3b1fa5f */.about-home {
  background: #f7fcf9;
  padding: 60px 20px;
  font-family: "Poppins", "Inter", sans-serif;
  color: #444;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1a8c57;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-text a {
  color: #1fb46a;
  text-decoration: underline;
}

.about-img {
  flex: 1 1 400px;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-img {
    order: 1;
    margin-bottom: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e934c11 */.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  color: #1a8c57;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 1rem;
  color: #444;
}/* End custom CSS */