:root {
    --primary-green: #198754;
    --dark-green: #157347;
    --light-green: #dcfce7;
    --text-dark: #292524;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    padding: .75rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: .2px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.btn-primary {
    background: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    border-radius: .75rem;
}

.btn-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f9ff 100%);
    padding: 9rem 0 5rem;
    position: relative;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: .3px;
}

.hero-title .accent {
    color: var(--primary-green);
}

.hero-subtitle {
    max-width: 760px;
    margin-inline: auto;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.search-box {
    background: #fff;
    border-radius: 1rem;
    padding: .75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    max-width: 1000px;
    margin: 2rem auto 0;
}

.search-input {
    border: none;
    font-size: 1rem;
    padding: .95rem 1rem;
    background: #f8fafc;
    border-radius: .75rem;
}

.search-input:focus {
    box-shadow: none;
    background: #fff;
    border: 1px solid #e5e7eb;
}
.signUp {
    background:var(--primary-green) ;
    color:#f8fafc;
    border-radius: 10px;
    padding: 10px;

}

/* Sections */
.section-title {
    font-weight: 800;
    text-align: center;
    margin-bottom: .5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* Services grid */
.service-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: .25s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(34, 197, 94, .12);
    border-color: var(--light-green);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.service-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.service-subtitle {
    color: var(--text-gray);
    font-size: .92rem;
}
/* featured Services */
.profile-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.card-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* Testimonials */
.testimonial-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 1rem;
    padding: 1.25rem 1.25rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.small-stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

.quote {
    font-style: italic;
    margin: .25rem 0 0;
}

/* Footer */
.footer {
    background: #292524;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer .footer-brand {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.35rem;
    font-style:italic;
}
.footer .footer-brand span{
    color: #d1d5db;
}

.footer .footer-link {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin: .35rem 0;
}

.footer .footer-link:hover {
    color:var(--primary-green);
}

.social-link {
    width: 40px;
    height: 40px;
    background: #d1d5db;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #292524;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-green);
}

@media (max-width: 767.98px) {

    .search-box .col-md-5,
    .search-box .col-md-2 {
        margin-top: .5rem;
    }
}