/* ===================================
   Nursing Care Page - Elite Style
=================================== */

:root {
  --primary: #2a9d8f;
  --secondary: #264653;
  --accent: #e76f51;
  --light-bg: #f4f4f9;
  --dark-text: #2c3e50;
}

/* Global Styles */
body {
  font-family: 'Lora', serif;
  background: var(--light-bg);
  color: var(--dark-text);
  margin: 0;
  padding: 0;
  line-height: 1.8;
  scroll-behavior: smooth;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  height: 80vh;
  background: url('/images/founder1.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 12px;
}

.hero-title {
  font-size: 4rem;
  color: #fff;
}

.hero-tagline {
  font-size: 1.8rem;
  color: #ddd;
  margin: 20px 0;
}

/* ---------- INTRO SECTION ---------- */
.intro-section {
  background: var(--secondary);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.2rem;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  padding: 100px 20px;
  background: #ffffff;
}

.services-wrapper {
  display: flex;
  gap: 40px;
}

/* Image Gallery */
.service-gallery {
  flex: 0.4;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-gallery img:hover {
  transform: translateY(-5px);
}

/* Service Content */
.services-content {
  flex: 0.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.4rem;
}

.cta-section p {
  font-size: 1.2rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-secondary {
  background-color: var(--accent);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
  background-color: #d45d42;
}

/* ---------- RESPONSIVENESS ---------- */
@media (max-width: 992px) {
  .services-wrapper {
    flex-direction: column;
  }
}
