﻿/* Updated Medical Color Theme - All other elements unchanged */
:root {
    /* New Medical Color Palette */
    --medical-blue: #0066CC;
    --trust-green: #00A86B;
    --pakistan-green: #01411C;
    --clean-white: #FFFFFF;
    --dark-grey: #333333;
    
    /* Mapped to existing variable names - ONLY COLORS CHANGED */
    --primary: var(--medical-blue);          /* Medical Blue */
    --secondary: var(--trust-green);         /* Trust Green */
    --accent: var(--pakistan-green);         /* Pakistan Green (CTA, Highlights) */
    --accent-hover: #013A14;                /* Darker Pakistan Green */
    --warning: #80D3B5;                     /* Light Trust Green variant */
    --bg: var(--clean-white);               /* Clean White */
    --card-bg: #ffffff;                     /* White */
    --text: var(--dark-grey);               /* Dark Grey */
    --heading: var(--dark-grey);            /* Dark Grey */
    --footer-bg: var(--pakistan-green);     /* Pakistan Green */
    --light-text: #ffffff;                  /* White */
    --border-color: rgba(0, 102, 204, 0.2); /* Light Medical Blue */
    
    /* Updated Gradient Combinations with new colors */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #01411C 100%);
    --gradient-secondary: linear-gradient(135deg, #00A86B 0%, #0066CC 100%);
    --gradient-accent: linear-gradient(135deg, #01411C 0%, #00A86B 100%);
    --gradient-natural: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
    --gradient-forest: linear-gradient(135deg, #00A86B 0%, #01411C 100%);
}

/* ===== GLOBAL STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    padding-top: 4rem; /* Adjust based on your nav height */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

@supports not (font-variation-settings: normal) {
  body {
    font-family: 'Inter', sans-serif;
  }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    margin-top: 0;
    color: var(--heading);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.img-thumb{
    max-width:3rem;
    height:auto;
    display:block;
}
.img-lg{
    max-width:5rem;
    height:auto;
    display:block;
}
/* Rounded Images */
.natural-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
}

/* ===== BUTTONS ===== */
.cta-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-hover);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 65, 28, 0.2);
}

.cta-btn:hover::before {
    left: 0;
}

.secondary-btn {
    background: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.secondary-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.outline-btn {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.outline-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 65, 28, 0.2);
}

/* Moss Button */
.moss-btn {
    background: var(--gradient-forest);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.moss-btn:hover {
    background: linear-gradient(135deg, #013A14 0%, #01411C 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 65, 28, 0.2);
}

/* ===== NAVIGATION ===== */
nav {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 5px 25px rgba(0, 102, 204, 0.15);
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
}

.logo-icon {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a.active {
    color: var(--secondary);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
    background: var(--accent);
}

/* ===== DROPDOWNS ===== */
.dropdown {
    position: relative;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 20px);
    left: -60px;
    background: var(--card-bg);
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.12);
    border-radius: 12px;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    border-top: 4px solid var(--secondary);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:hover {
    background: rgba(0, 168, 107, 0.1);
    color: var(--secondary);
    padding-left: 1.8rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 4rem 5% 3rem; /* Keep only this one - removed duplicate */
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin-bottom:1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-contents {
    flex: 1 1 60%;
    min-width: 300px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-contents h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-contents h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.hero-img-wrapper {
    flex: 0 0 35%;
    max-width: 520px;
    border-radius: 10px;
    overflow: hidden;
    animation: heroImageReveal 1.2s ease-out forwards;
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
    position: relative;
    z-index: 1;
    border: 8px solid var(--card-bg);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.hero-img-wrapper:hover img {
    transform: scale(1.05);
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(0.9) translateX(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

/* ===== GRID LAYOUTS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 100%;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-forest);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: transparent;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    background: rgba(0, 168, 107, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.learn-more {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary);
    border-bottom-color: var(--accent);
    gap: 12px;
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* ===== FORMS ===== */
.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 15px;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
}

/* Custom Inputs */
.input-group {
    margin-top: 0.5rem;
}

.input-custom {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.label-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
}

.checkbox-box, .radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    background: white;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.checkbox-box {
    border-radius: 6px;
}

.radio-circle {
    border-radius: 50%;
}

/* Checked States */
.input-custom:checked + .label-custom .checkbox-box {
    background: var(--secondary);
    border-color: var(--secondary);
}

.input-custom:checked + .label-custom .checkbox-box::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.input-custom:checked + .label-custom .radio-circle {
    border-color: var(--secondary);
}

.input-custom:checked + .label-custom .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.input-custom:focus + .label-custom .checkbox-box,
.input-custom:focus + .label-custom .radio-circle {
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.2);
    border-color: var(--secondary);
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
    width: 100%;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230066CC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-input:disabled {
    background-color: #f8f9fa;
    color: #a0aec0;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

/* ===== FOOTER ===== */
footer {
    background: var(--gradient-primary);
    color: var(--light-text);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-forest);
}

/* FIVE COLUMN FOOTER LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: 3fr repeat(4, 2fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* First column - larger width */
.footer-column:first-child {
    padding-right: 2rem;
}

/* Footer headings */
.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--warning);
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--warning);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* RESPONSIVE DESIGN */

/* Tablet: Switch to 2 columns */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column:first-child {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* MOBILE: First column full width, remaining columns in 2x2 grid */
@media (max-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "first"
            "row1"
            "row2";
        gap: 0;
    }
    
    /* First column - full width at top */
    .footer-column:first-child {
        grid-area: first;
        width: 100%;
        padding: 0 0 2rem 0;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }
    
    /* Container for columns 2-3 (first row of 2x2) */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        display: inline-block;
        width: 50%;
        float: left;
        box-sizing: border-box;
        padding: 1rem;
        text-align: center;
        clear: none;
    }
    
    /* Container for columns 4-5 (second row of 2x2) */
    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        display: inline-block;
        width: 50%;
        float: left;
        box-sizing: border-box;
        padding: 1rem;
        text-align: center;
        clear: none;
    }
    
    /* Clearfix for the floated layout */
    .footer-grid::after {
        content: '';
        display: table;
        clear: both;
    }
    
    /* Reset heading alignment */
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Small mobile: Stack all columns */
@media (max-width: 480px) {
    .footer-column:first-child {
        padding: 0 0 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    /* Stack all columns vertically */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        width: 100%;
        float: none;
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }
}

/* ADD THESE STYLES FOR BETTER VISUAL APPEARANCE */

/* Logo in first column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.footer-logo-icon {
    color: var(--warning);
    font-size: 2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--warning);
    transform: translateY(-3px);
}

/* Mobile adjustments for logo and social */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===== MOBILE MENU SCROLL LOCK ===== */
html.menu-open,
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ===== MOBILE NAVIGATION ===== */
#menu-toggle, .hamburger, .nav-overlay {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 4rem 5%;
    }

    .hero-contents {
        text-align: center;
    }

    .hero-contents h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-img-wrapper {
        max-width: 400px;
        width: 100%;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Slightly less for mobile */
    }
    
    nav {
        padding: 0.8rem 5%;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .hero {
        padding: 6rem 5% 4rem;
    }
    
    /* Mobile Grid Layouts */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 8px;
        z-index: 1002;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--secondary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 1001;
        align-items: stretch;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #menu-toggle:checked ~ .nav-links {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        display: block;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.active {
        background: rgba(0, 168, 107, 0.1);
        border-left: 4px solid var(--secondary);
    }
    
    /* Mobile Menu Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
    }
    
    #menu-toggle:checked ~ .nav-overlay {
        display: block;
    }
    
    /* Hamburger Animation */
    #menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--secondary);
    }
    
    #menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--secondary);
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 15px;
    }
    
    .hero-contents h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.8rem;
        width: 100%;
        text-align: center;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Service Card Image Container */
.service-img-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: rgba(0, 168, 107, 0.1);
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-container img {
    transform: scale(1.08);
}

/* Card Variations */
.service-card.featured {
    border: 2px solid var(--accent);
    background: white;
}

.service-card.featured::before {
    height: 8px;
    background: var(--gradient-accent);
}

/* Stats Counter */
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary);
    font-weight: 600;
}

/* Forest Badge */
.forest-badge {
    display: inline-block;
    background: var(--gradient-forest);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 3rem 0;
}

/* Accent elements for contrast */
.accent-border {
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(0, 168, 107, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

/* ===== TRUST BADGE - MULTIPLE CARDS IN ROW ===== */
.trust-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid #0066CC;
    border-left: 6px solid #00A86B;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.trust-badge-content {
    flex: 1;
}

.trust-badge-content h4 {
    color: #01411C;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
}

.trust-badge-content p {
    color: #333333;
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Trust Badge Variations */
.trust-badge-medical {
    border-color: #0066CC;
    border-left-color: #0066CC;
}

.trust-badge-medical .trust-badge-icon {
    background: #0066CC;
}

.trust-badge-trusted {
    border-color: #00A86B;
    border-left-color: #00A86B;
}

.trust-badge-trusted .trust-badge-icon {
    background: #00A86B;
}

.trust-badge-certified {
    border-color: #01411C;
    border-left-color: #01411C;
}

.trust-badge-certified .trust-badge-icon {
    background: #01411C;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .trust-badge {
        min-width: 250px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .trust-badge-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-badge {
        max-width: 100%;
        width: 100%;
        padding: 12px 15px;
    }
    
    .trust-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .trust-badge-content h4 {
        font-size: 16px;
    }
    
    .trust-badge-content p {
        font-size: 13px;
    }
}

/* For exactly 2 badges side by side */
.trust-badge-duo {
    justify-content: space-between;
}

.trust-badge-duo .trust-badge {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

/* For exactly 3 badges in a row */
.trust-badge-trio {
    justify-content: space-between;
}

.trust-badge-trio .trust-badge {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

/* For exactly 4 badges in a row */
.trust-badge-quad {
    justify-content: space-between;
}

.trust-badge-quad .trust-badge {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}
