body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #222222;
    color: white;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa; /* same as page background */
}

.logo {
    max-width: auto;
    height: 50px;
    margin-left: 20px; /* optional spacing from the edge */
}

nav {
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
}

nav a {
    color: #0d0b2d;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #0d0b2d;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: white;
}

section {
    padding: 20px;
    max-width: none; width: 100%;
    margin: auto;
}

h1, h2 {
    color: #4cafef;
}

footer {
    background-color: #222222;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* Responsive Menu */
@media (max-width: 768px) {
    nav a {
        display: none;
        padding: 10px;
        display: block;
    }
    nav.active a {
        display: block;
    }
    .menu-toggle {
        display: inline-block;
        margin-left: 20px;
    }
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
}

nav {
    background: none; /* remove separate bar */
    padding: 0;
}
.btn-primary{background:linear-gradient(90deg,var(--accent1),var(--accent2)); color:#5b8fd8; padding:10px 14px; border-radius:8px; font-weight:700}

/* Hero Section */
.hero {
    height: 100vh; /* Full screen height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(13,11,45,0.6), rgba(13,11,45,0.6)),
                url('caregiver-elderly.jpg') no-repeat center center;
    background-size: cover; /* Fully cover background */
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0d0b2d;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #35a96d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
.about-section {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f8f9fa; /* match site background */
}

.about-card {
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.about-card h1 {
    color: #0d0b2d;
    margin-bottom: 15px;
}

.about-card p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #0d0b2d;
    color: #0d0b2d;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: hsl(149, 52%, 50%);
    color: #f8f9fa;
}
.services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.services-section h2 {
    color: #0d0b2d;
    margin-bottom: 30px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #0d0b2d; /* purple tone like example */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.services-section h2 {
    color: white;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #222222;
    border: 2px solid #0d0b2d;
    border-radius: 10px;
    padding: 20px;
    max-width: 280px;
    flex: 1 1 250px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #0d0b2d;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-section {
  background-image: url('caregiver-elderly.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; /* This makes the hero section fill the entire viewport height */
}
.jobs-section {
    padding: 50px 20px;
    background-color: #f8f9f9;
    color: white;
    max-width: none; width: 100%;
    margin: auto;
    text-align: center;
}

.jobs-section h2 {
    color: #0d0b2d;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid #0d0b2d;
    color: #0d0b2d;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #0d0b2d;
    color: #f8f9fa;
}

.job-content {
    display: none;
    text-align: left;
    background-color: #f8f9fa;
    color: #0d0b2d;
    padding: 20px;
    border-radius: 10px;
}

.job-content.active {
    display: block;
}

.job-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.reviews-section {
    padding: 54px 20px;
    text-align: center;
    background-color: var(--bg);
}

.reviews-section h2 {
    color: var(--brand);
    margin-bottom: 30px;
}

.review-card {
    max-width: 800px;
    margin: auto;
    background-color: var(--panel);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-author {
    color: var(--brand);
    font-weight: bold;
    font-size: 1rem;
}
/* Vision Section */
.vision-section {
    display: flex;
    justify-content: center;
    padding: 54px 20px;
}
.vision-card {
    background: var(--panel);
    border-radius: 14px;
    padding: 28px;
    max-width: none; width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    text-align: center;
}
.vision-card h2 {
    color: var(--brand);
    margin-top: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 54px 20px;
    text-align: center;
    background-color: var(--bg);
}
.reviews-section h2 {
    color: var(--brand);
    margin-bottom: 30px;
}
.review-card {
    max-width: 800px;
    margin: auto;
    background-color: var(--panel);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6
}
/* Vision Section */
.vision-section {
    display: flex;
    justify-content: center;
    padding: 54px 20px;
}
.vision-card {
    background: var(--panel);
    border-radius: 14px;
    padding: 28px;
    max-width: none; width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    text-align: center;
}
.vision-card h2 {
    color: #0d0b2d;
    margin-top: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 54px 20px;
    text-align: center;
    background-color: var(--bg);
}
.reviews-section h2 {
    color: var(--brand);
    margin-bottom: 30px;
}
.review-card {
    max-width: 800px;
    margin: auto;
    background-color: var(--panel);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.review-author {
    color: var(--brand);
    font-weight: bold;
    font-size: 1rem;
}

section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
}

:root {
    --bg: #f8f9fa;
    --panel: #ffffff;
    --brand: #0d0b2d;
    --text: #222222;
}
body {
    background-color: var(--bg);
    color: var(--text);
}

:root {
    --bg: #ddd8da;         /* Soft beige background */
    --panel: #ffffff;      /* White panels for content areas */
    --brand: #f8f9fa;      /* Muted blue-grey accent */
    --brand-light: #dcd7d9;/* Light grey-pink secondary accent */
    --text: #000000;       /* Deep black text */
}

body {
    background-color: var(--bg);
    color: var(--text);
}

header, nav, footer {
    background-color: var(--brand);
    color: #ffffff;
}

button, .btn {
    background-color: var(--brand);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover, .btn:hover {
    background-color: var(--brand-light);
    color: var(--text);
}

.card {
    background-color: var(--panel);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
}
/* Navbar links in logo background color */
nav ul li a {
    color: #0d0b2d; /* same as logo bg */
    font-weight: 600;
}

nav ul li a:hover {
    color: #4cafef; /* light blue accent on hover */
}

/* Reduce logo size */
nav .logo img {
    height: 50px; /* adjust as needed */
    width: auto;
}
.about-card {
    background-color: #ffffff; /* Light background for blend */
    color: #333333; /* Darker text for readability */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Softer shadow */
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-card h2 {
    color: #0d0b2d; /* Logo background color */
}

.about-card p {
    line-height: 1.6;
}
.about-card {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft shadow */
    max-width: 1200px; /* Increased width */
    margin: 40px auto; /* Center and add spacing */
    text-align: center;
}

.about-card h2 {
    color: #0d0b2d; /* Brand navy */
}

.about-card p {
    line-height: 1.6;
    font-size: 1.05rem;
}
#services h2,
#reviews h2 {
    color: #0d0b2d; /* Logo background color */
}

/* Service & Job Cards */
.service-card,
.job-card {
    background-color: #f8f9fc; /* Light background matching page */
    color: #0d0b2d; /* Dark text for contrast */
    border: 1px solid #e0e0e0; /* Soft border to define card */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Titles inside cards */
.service-card h3,
.job-card h3 {
    color: #0d0b2d;
}

/* Optional: Make buttons match theme */
.filter-btn.active,
.filter-btn:hover {
    background-color: #0d0b2d;
    color: white;
}

footer {
    color: #0d0b2d;
}

/* If you have footer links */
footer a {
    color: #0d0b2d;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#contact h2 {
    color: #0d0b2d;
}
#about p {
    text-align: justify;
}

