/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
}

.nacare-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nacare-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nacare-btn-primary {
  background: #16a34a;
  color: #fff;
}

.nacare-btn-primary:hover {
  background: #15803d;
}

.nacare-btn-outline {
  border: 2px solid #16a34a;
  color: #16a34a;
}

.nacare-btn-outline:hover {
  background: #16a34a;
  color: #fff;
}

.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #16a34a;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-box h3 {
  color: #16a34a;
  font-size: 36px;
  margin: 0;
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-number {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.showcase {
  background: #f0fdf4;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.showcase img {
  width: 100%;
  border-radius: 30px;
}

.check-list {
  margin-top: 30px;
}

.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  padding: 35px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta {
  background: #16a34a;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 50px;
  margin-bottom: 25px;
}

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 10px;
}

@media(max-width: 991px) {
  .hero-grid,
  .showcase-grid,
  .features-grid,
  .review-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .cta h2 {
    font-size: 40px;
  }
}

