/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    margin-left: 20px;
}

.bg-light { background: #f4f7f6; }
.bg-dark { background: #2c3e50; color: white; }

/* Navigation */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .highlight, header .current a {
    color: #94d2bd;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
}

.logo span { color: #27ae60; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    --text-decoration: underline black wavy 1px;
	text-decoration: underline overline #e5edff 1px;
	text-underline-offset: 8px;
    color: #333;
    font-weight: 700;
	font-size: 1.8rem;
    transition: 0.3s;
}

.nav-links a:hover { color: #27ae60; }


.site-logo {
	background-image: url('newlogo1-emboss-4.png');
    background-repeat: no-repeat;
    background-size: contain; 
    width: auto;      /* Adjust size as needed */
    height: auto;      /* Maintain aspect ratio */
    margin: 10px 0;    /* Add some margin for spacing */
    display: block;    /* Ensure it behaves like a block element for layout */
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover { background: #219150; }

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.motto-box {
    background: #eafaf1;
    padding: 30px;
    border-left: 5px solid #27ae60;
}

.motto-box ul { list-style: none; }
.motto-box li { margin-bottom: 15px; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: #27ae60;
    margin-bottom: 20px;
    border-bottom: 2px solid #f4f7f6;
    padding-bottom: 10px;
}

.service-card ul {
    list-style: square;
    padding-left: 20px;
}

/* Clientele */
.client-content { text-align: center; }
.client-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.client-tags span {
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Contact */
.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form {
    margin-right: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    margin-right: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #1a252f;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-grid, .services-grid, .contact-flex {
        grid-template-columns: 1fr;
    }
    .hero-content h2 { font-size: 2rem; }
    .nav-links { display: none; } /* Simplified for demo */
}

/* About Page Specifics */
.page-header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.nav-links a.active {
    color: #27ae60;
    border-bottom: 2px solid #27ae60;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Services Page Specifics */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
}

.detailed-services {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.category-header {
    padding: 20px;
    border-radius: 8px 8px 0 0;
    color: white;
    text-align: center;
}

.category-header.medical {
    background-color: #2c3e50; /* Dark Navy from your design */
}

.category-header.non-medical {
    background-color: #78a3a3; /* Teal/Blue-Grey from your design */
}

.category-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2px;
    background-color: #eee; /* Creates the border effect between items */
    border: 1px solid #eee;
}

.detail-item {
    background-color: white;
    padding: 30px;
}

.detail-item h4 {
    color: #27ae60;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.detail-item p {
    font-size: 0.95rem;
    color: #666;
}

.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .service-list-grid {
        grid-template-columns: 1fr;
    }
}

/* Clientele Page Specifics */
.client-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.client-box {
    background: #fff;
    padding: 40px;
    border: 1px solid #eef2f3;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-box:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #27ae60;
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.client-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.client-box p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonial Section */
.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

.testimonial blockquote {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #27ae60;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
}

/* Ensure Active Link Color */
.nav-links a.active {
    color: #27ae60;
}

/* Contact Page Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-item {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.info-icon {
    font-size: 1.5rem;
    background: #f4f7f6;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Styled Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.styled-form input, 
.styled-form select, 
.styled-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Map Section */
.map-placeholder {
    position: relative;
    border-top: 1px solid #eee;
}

.map-overlay {
    position: absolute;
    top: 10px;
    left: 20px;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    border-radius: 5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}