
        :root {
            --primary-brown: #5D4037;
            --secondary-brown: #A1887F;
            --accent-orange: #FF7043;
            --white: #FFFFFF;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--primary-brown);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background: transparent !important;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            color: var(--primary-brown) !important;
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            color: var(--accent-orange);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-brown) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-orange) !important;
        }
        
        .btn-cta {
            background: var(--accent-orange);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }
        
        .btn-cta:hover {
            background: var(--primary-brown);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(93, 64, 55, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(93, 64, 55, 0.9), rgba(161, 136, 127, 0.9)),
                        url('https://img.freepik.com/free-photo/happiness-bargain-clinic-bed-equipment_1134-972.jpg?semt=ais_hybrid&w=740&q=80') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .nav-item{
            margin-left:30px;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-brown);
            font-weight: bold;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-orange);
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-brown);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 20px;
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission */
        .vm-card {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid var(--accent-orange);
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px;
            transition: all 0.3s ease;
            border-radius: 10px;
        }
        
        .feature-box:hover {
            background: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--primary-brown);
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--secondary-brown);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 2rem;
            font-weight: bold;
        }
        
        /* Services Section */
        .service-card {
            background: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height:300px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h4 {
            color: var(--primary-brown);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--light-gray);
            color: var(--primary-brown);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--secondary-brown);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-orange);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--accent-orange);
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-form {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 15px;
        }
        
        .form-control, .form-select {
            border: 2px solid transparent;
            border-radius: 10px;
            padding: 12px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 112, 67, 0.25);
        }
        
        /* Footer */
        footer {
            background: var(--primary-brown);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--accent-orange);
            margin-bottom: 25px;
            font-weight: bold;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--accent-orange);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright a {
            color: var(--accent-orange);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                background: var(--white);
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
