        :root {
            --color-cream: #FAF8F5;
            --color-sage: #8B9A7D;
            --color-sage-light: #C5D1BC;
            --color-sage-lighter: #E8EDE4;
            --color-stone: #3D3D3D;
            --color-stone-light: #6B6B6B;
            --color-warm-white: #FFFFFF;
            --color-accent: #B4936D;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-cream);
            color: var(--color-stone);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Subtle grain texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.03;
            z-index: 1000;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: linear-gradient(to bottom, var(--color-cream), transparent);
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 0 rgba(139, 154, 125, 0.1);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-stone);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.875rem;
            color: var(--color-stone-light);
            text-decoration: none;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-sage);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-stone);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 8rem 4rem 4rem;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 0.875rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-sage);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-subtitle::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--color-sage);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--color-stone);
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .hero-title em {
            font-style: italic;
            color: var(--color-sage);
        }

        .hero-description {
            font-size: 1.125rem;
            text-transform: capitalize;
            color: var(--color-stone-light);
            margin-bottom: 3rem;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: var(--color-sage);
            color: var(--color-warm-white);
            border: none;
            border-radius: 2rem;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--color-stone);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(61, 61, 61, 0.15);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--color-stone);
            border: 1px solid var(--color-sage-light);
            border-radius: 2rem;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: var(--color-sage);
            background: var(--color-sage-lighter);
        }

        .hero-image {
            position: relative;
            height: 80vh;
            max-height: 700px;
            animation: fadeIn 1.2s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .hero-image-container {
            width: 100%;
            height: 100%;
            border-radius: 200px 200px 20px 20px;
            overflow: hidden;
            position: relative;
            background-image: url('clinic_photo.jpg');
            /* background-size: contain; */
            background-size: cover;
            background-position: center 75%;
            background-repeat: no-repeat;
            /* background-position: center top; */
            background-color: var(--color-sage-lighter);
        }

        .floating-card {
            position: absolute;
            background: var(--color-warm-white);
            padding: 1.5rem 2rem;
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            animation: float 6s ease-in-out infinite;
        }

        .floating-card-1 {
            bottom: 15%;
            left: -60px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            top: 20%;
            right: -40px;
            animation-delay: -3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card-icon {
            width: 40px;
            height: 40px;
            background: var(--color-sage-lighter);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            color: var(--color-sage);
        }

        .floating-card-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--color-stone);
            margin-bottom: 0.25rem;
        }

        .floating-card-text {
            font-size: 0.8125rem;
            color: var(--color-stone-light);
        }

        /* Section Styles */
        section {
            padding: 8rem 4rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-tag {
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--color-sage);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: var(--color-stone);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-description {
            color: var(--color-stone-light);
            font-size: 1.0625rem;
        }

        /* About Section */
        .about {
            background: var(--color-warm-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 20px;
            overflow: hidden;
        }

        .about-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .about-accent {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--color-sage-light);
            opacity: 0.3;
            top: -40px;
            right: -40px;
            z-index: -1;
        }

        .about-content h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: var(--color-stone);
        }

        .about-content p {
            color: var(--color-stone-light);
            margin-bottom: 1.5rem;
            font-size: 1.0625rem;
        }

        .credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .credential {
            padding: 0.75rem 1.5rem;
            background: var(--color-sage-lighter);
            border-radius: 2rem;
            font-size: 0.8125rem;
            color: var(--color-stone);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .service-card {
            background: transparent;
            padding: 0.75rem 0;
            border-radius: 0;
            border: none;
            display: flex;
            align-items: center;
            text-align: left;
            gap: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 1px;
            background: var(--color-sage-light);
            opacity: 0.5;
        }

        .service-card:hover {
            transform: translateX(6px);
        }

        .service-icon {
            width: 36px;
            height: 36px;
            background: var(--color-sage-lighter);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-sage);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--color-sage);
            color: var(--color-warm-white);
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0;
            color: var(--color-stone);
            line-height: 1.4;
        }

        /* Approach Section */
        .approach {
            background: var(--color-sage);
            color: var(--color-warm-white);
            position: relative;
            overflow: hidden;
        }

        .approach::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .approach .section-tag {
            color: var(--color-sage-light);
        }

        .approach .section-title {
            color: var(--color-warm-white);
        }

        .approach .section-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .approach-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .approach-step {
            text-align: center;
            position: relative;
        }

        .approach-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -1.5rem;
            width: 3rem;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--font-display);
            font-size: 1.5rem;
        }

        .approach-step h3 {
            font-family: var(--font-display);
            font-size: 1.375rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .approach-step p {
            font-size: 0.9375rem;
            opacity: 0.85;
            line-height: 1.7;
        }

        .break {
            display: block;
        }

        @media (max-width: 1024px) {
            .break {
                display: inline;
            }
        }

        /* Contact Section */
        .contact {
            background: var(--color-warm-white);
            padding: 10rem 4rem;
        }

        .contact-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .contact-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 4vw, 3rem);
            font-weight: 400;
            margin-bottom: 1.5rem;
            color: var(--color-stone);
        }

        .contact-locations {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .contact-location {
            padding: 2.5rem;
            background: var(--color-cream);
            border-radius: 1rem;
            border-left: 4px solid var(--color-sage);
        }

        .contact-location h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-stone);
            margin-bottom: 1.25rem;
        }

        .contact-location p {
            color: var(--color-stone-light);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .contact-location p:last-child {
            margin-bottom: 0;
        }

        .contact-location a {
            color: var(--color-sage);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-location a:hover {
            color: var(--color-stone);
        }

        .contact-detail {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .contact-detail-label {
            color: var(--color-stone);
            font-weight: 500;
            min-width: 80px;
        }

        .contact-detail-value {
            color: var(--color-stone-light);
        }

        .contact-detail-value a {
            color: var(--color-sage);
        }

        .contact-location p,
        .contact-detail-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-location i {
            color: var(--color-sage);
        }

        /* Disclaimer Section */
        .disclaimer {
            background: var(--color-cream);
            padding: 6rem 4rem;
        }

        .disclaimer-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .disclaimer-box {
            padding: 2.5rem;
            background: var(--color-warm-white);
            border-radius: 1rem;
            margin-bottom: 2rem;
            border: 1px solid var(--color-sage-lighter);
        }

        .disclaimer-box h3 {
            font-family: var(--font-display);
            font-size: 1.375rem;
            font-weight: 500;
            color: var(--color-stone);
            margin-bottom: 1rem;
        }

        .disclaimer-box p {
            color: var(--color-stone-light);
            font-size: 0.9375rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .disclaimer-box p:last-child {
            margin-bottom: 0;
        }

        .disclaimer-box a {
            color: var(--color-sage);
            text-decoration: none;
        }

        .disclaimer-box a:hover {
            text-decoration: underline;
        }

        .emergency-box {
            border-left: 4px solid var(--color-accent);
            background: #FDF8F3;
        }

        .emergency-box h3 {
            color: var(--color-accent);
        }

        /* Footer */
        footer {
            background: var(--color-stone);
            color: var(--color-warm-white);
            padding: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-warm-white);
        }

        .footer-copy {
            width: 100%;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 1.25rem 2rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 5rem 2rem;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 7rem 2rem 4rem;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-subtitle {
                justify-content: center;
            }

            .hero-description {
                max-width: 100%;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                height: 50vh;
                max-height: 500px;
            }

            .floating-card {
                display: none;
            }
             
            /* here update*/
            /* .floating-card-1{
                left: auto;
                right: 10px;
                bottom: 55%;
                transform: none;
                width: auto;
            } */

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .approach-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .approach-step:not(:last-child)::after {
                display: none;
            }

            .contact-cards {
                grid-template-columns: 1fr;
            }

            .office-hours {
                flex-direction: column;
                gap: 1.5rem;
            }
        }


        @media (max-width: 600px) {
            .approach-steps {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
