/* Heal Care World - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0f4c75;
  --primary-dark: #093a5a;
  --primary-light: #e6f0fa;
  --accent: #ff8a3d;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(15, 76, 117, 0.08);
  --shadow-hover: 0 20px 60px rgba(15, 76, 117, 0.15);
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

/* Navigation */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,76,117,0.08);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary) !important; }

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #093a5a 0%, #0f4c75 50%, #1565a0 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/hero.jpg') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  font-size: 3.2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero p.lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 76, 117, 0.25);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 76, 117, 0.35);
}
.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}

/* Sections */
section { padding: 5rem 0; }
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}
.section-heading .subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card-custom {
  background: var(--white);
  border: none;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  overflow: hidden;
  height: 100%;
}
.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-custom img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.card-custom:hover img { transform: scale(1.05); }
.card-custom .card-body { padding: 1.75rem 1.25rem; }
.card-custom h5 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.card-custom p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* About */
.about-section { background: var(--white); }
.about-img {
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* Why Choose */
.why-section { background: linear-gradient(to bottom, var(--primary-light), var(--bg)); }
.feature-box {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  height: 100%;
}
.feature-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-box .icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

/* Testimonials */
.testimonial-section { background: var(--white); }
.testimonial-card {
  background: var(--bg);
  border-radius: 1.25rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  height: 100%;
}
.testimonial-card .quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-style: italic;
}

/* FAQ */
.accordion-button {
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  border-radius: 0.75rem !important;
}
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}
.accordion-item {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
}

/* Blog */
.blog-card img { height: 200px; object-fit: cover; width: 100%; border-radius: 1rem 1rem 0 0; }
.blog-card a { text-decoration: none; color: inherit; }
.blog-card h5 { margin-top: 0.75rem; color: var(--primary-dark); }
.blog-card .date { color: var(--text-light); font-size: 0.85rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 2rem;
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer h5 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
}
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: #fff; }

/* Forms */
.form-control, .form-select {
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e5e7eb;
  transition: all 0.2s;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1); }

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  section { padding: 3rem 0; }
}

.banner-img img{
  width: 100%;
}

.navbar-brand img{
  width: 250px;
}