/* ===== Brand Style: Care & Cure Wellness ===== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #f1f8f4; /* soft mint background */
  line-height: 1.6;
}

h1, h2, h3 {
  color: #0d4d1f;
  margin-bottom: 0.5em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('header.jpg') center/cover no-repeat;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero .overlay {
  background: linear-gradient(rgba(13,77,31,0.6), rgba(0,0,0,0.4));
}


.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  z-index: 2;
}

.hero p {
  z-index: 2;
  max-width: 600px;
  font-size: 1.2rem;
  margin: 0.5em auto 1.5em auto;
}

.hero-logo {
  width: 160px;
  margin-bottom: 1em;
  z-index: 2;
}

.btn-gradient {
  background: linear-gradient(90deg, #2e7d32, #8cd93b);
  color: white;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.btn-gradient:hover {
  box-shadow: 0 4px 20px rgba(20,100,20,0.3);
  transform: translateY(-2px);
}

.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="[w3.org](http://www.w3.org/2000/svg)" viewBox="0 0 1440 320"><path fill="%23f9fbf9" fill-opacity="1" d="M0,64L60,69.3C120,75,240,85,360,117.3C480,149,600,203,720,229.3C840,256,960,256,1080,218.7C1200,181,1320,107,1380,69.3L1440,32L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') no-repeat center/cover;
}

/* NAVIGATION */
.navbar {
  background: #0d4d1f;
  padding: 12px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.navbar a:hover {
  color: #8cd93b;
}

/* MAIN SECTIONS */
.section {
  padding: 80px 10%;
  background: #f6f8f7;
}
.section.alt {
  background: linear-gradient(180deg, #e9f2eb 0%, #f1f8f4 100%);
}

/* SCROLL FADE ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* ABOUT SECTION */
.about-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}

.about-img {
  flex: 1 1 45%;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-grid div {
  flex: 1 1 45%;
}

.info-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: #ffffffcc; /* translucent white */
  backdrop-filter: blur(4px);
}

.card:hover {
  transform: translateY(-5px);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* INDUSTRIES */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.industries-list li {
  background: #2e7d32;
  color: white;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: 500;
}

/* CONTACT */
.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.contact-img {
  flex: 1 1 40%;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.contact-box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  background: #0d4d1f;
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}
