
        :root {
            --beige: #f5f5dc;
            --taupe: #8b8680;
            --white: #ffffff;
            --dark-taupe: #5c5853;
            --light-beige: #faf8f3;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: var(--white);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
            box-shadow: none;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--dark-taupe) !important;
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            color: var(--taupe);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-taupe) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--taupe) !important;
        }
        
        .btn-cta {
            background-color: var(--taupe);
            color: var(--white);
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: var(--dark-taupe);
            color: var(--white);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(139, 134, 128, 0.7), rgba(139, 134, 128, 0.7)), url('https://media.istockphoto.com/id/1165046681/photo/healthcare-business-graph-and-medical-examination-and-businessman-analyzing-data-and-growth.jpg?s=612x612&w=0&k=20&c=b_LAZKKiuFNGiZfYPSvKMiKL4tf7CLDjDiIzyC0oOqk=') center/cover no-repeat;
            padding: 120px 0;
            color: var(--white);
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:5.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-hero {
            background-color: var(--white);
            color: var(--taupe);
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: var(--beige);
            color: var(--dark-taupe);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--light-beige);
        }
        
        .about-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .about-section p {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .btn-read-more {
            background-color: var(--taupe);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-read-more:hover {
            background-color: var(--dark-taupe);
            color: var(--white);
        }
        
        /* Counter Section */
        .counter-section {
            padding: 60px 0;
            background-color: var(--taupe);
            color: var(--white);
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--beige);
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .vision-mission-box {
            background-color: var(--light-beige);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--taupe);
            margin-bottom: 20px;
        }
        
        .vision-mission-box h3 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
            background-color: var(--light-beige);
        }
        
        .why-choose-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .feature-box {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--taupe);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--dark-taupe);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Work Process Section */
        .process-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .process-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .process-box {
            text-align: center;
            position: relative;
        }
        
        .process-box::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--taupe);
            z-index: -1;
        }
        
        .process-box:last-child::after {
            display: none;
        }
        
        .process-step {
            width: 80px;
            height: 80px;
            background-color: var(--taupe);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .process-box h4 {
            color: var(--dark-taupe);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-beige);
        }
        
        .services-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h4 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .btn-service {
            background-color: var(--taupe);
            color: var(--white);
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-service:hover {
            background-color: var(--dark-taupe);
            color: var(--white);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .reviews-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .review-card {
            background-color: var(--light-beige);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .reviewer h5 {
            margin: 0;
            color: var(--dark-taupe);
            font-weight: 600;
        }
        
        .review-card .reviewer p {
            margin: 0;
            font-style: normal;
            color: var(--taupe);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light-beige);
        }
        
        .faq-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .accordion-button {
            background-color: var(--white);
            color: var(--dark-taupe);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--taupe);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--taupe);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(139, 134, 128, 0.8), rgba(139, 134, 128, 0.8)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-cta-large {
            background-color: var(--white);
            color: var(--taupe);
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-cta-large:hover {
            background-color: var(--beige);
            color: var(--dark-taupe);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .contact-section h2 {
            color: var(--dark-taupe);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .contact-info {
            background-color: var(--light-beige);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--taupe);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-info-item h5 {
            color: var(--dark-taupe);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-info-item p {
            margin: 0;
            line-height: 1.6;
        }
        
        .contact-form {
            background-color: var(--light-beige);
            padding: 30px;
            border-radius: 10px;
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--taupe);
            box-shadow: 0 0 0 0.25rem rgba(139, 134, 128, 0.25);
        }
        
        .btn-submit {
            background-color: var(--taupe);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: var(--dark-taupe);
            color: var(--white);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-taupe);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        footer h4 {
            color: var(--beige);
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        footer p {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        footer ul {
            padding-left: 0;
            list-style: none;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer ul li a:hover {
            color: var(--beige);
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--taupe);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--beige);
            color: var(--dark-taupe);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
        }
        
        .footer-bottom a {
            color: var(--beige);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .footer-bottom a:hover {
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .process-box::after {
                display: none;
            }
        }
