body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f7fa;
  color: #333;
}

header {
  background: #1e3a8a;
  color: white;
  padding: 2rem;
  text-align: center;
}

.hero img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

main {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #1e3a8a;
  margin-top: 3rem;
  border-left: 4px solid #1d4ed8;
  padding-left: 1rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-left: 5px solid #2563eb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card h3 {
  color: #1e40af;
  margin: 0;
}

.card .location {
  font-style: italic;
  color: #555;
}

.card .duration {
  color: #888;
  font-size: 0.9rem;
}

ul.links a {
  color: #1d4ed8;
  text-decoration: underline;
}

blockquote {
  background: #e0f2fe;
  padding: 1rem;
  font-style: italic;
  border-left: 4px solid #38bdf8;
  margin: 1rem 0;
}

.author {
  text-align: right;
  font-size: 0.9rem;
  color: #555;
}

form input, form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  padding: 0.6rem 1.2rem;
  background: #1d4ed8;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #2563eb;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  background: #1d4ed8;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #1e3a8a;
  color: white;
}
/* Blog Section */
#blog .blog-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 1rem;
}

#blog article {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#blog h3 {
  margin: 0 0 0.5rem;
  color: #1e3a8a;
}

#blog a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #2563eb;
  text-decoration: underline;
}

/* Gallery Section */
#gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 1rem;
}

#gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: cover;
}

.navbar {
  background-color: #f8f9fa;
  padding: 1em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #0077cc;
}
.back-home {
  color: #0056b3;
  font-weight: 600;
  text-decoration: none;
  padding: 0.25em 0;
  display: inline-block;
  transition: color 0.3s ease;
}

.back-home:hover {
  color: #003f7f;
  text-decoration: underline;
}
.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #444;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #222;
}
footer a {
  margin-right: 20px;
}
#blog{
  color: white !important;
}
.hero-image {
  background-image: url('images/healthcare-banner.jpg'); /* replace with your preferred image path */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  font-weight: 300;
}

.nav-link {
  margin-top: 20px;
}

.nav-link a {
  color: #fff;
  background-color: #ff69b4;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}

.nav-link a:hover {
  background-color: #ff4081;
}
