
        :root {
            --ivory: #FFFFF0;
            --dark-green: #1B5E20;
            --gold: #C9A227;
            --light-gold: rgba(201, 162, 39, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--dark-green) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 2rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-green) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--dark-green), #2E7D32);
            color: white !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .btn-cta:hover {
            background: linear-gradient(135deg, #2E7D32, var(--dark-green));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(27, 94, 32, 0.9), rgba(46, 125, 50, 0.8)),
                        url('https://media.istockphoto.com/id/1437830105/photo/cropped-shot-of-a-female-nurse-hold-her-senior-patients-hand-giving-support-doctor-helping.jpg?s=612x612&w=0&k=20&c=oKR-00at4oXr4tY5IxzqsswaLaaPsPRkdw2MJbYHWgA=');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:4rem;
             text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .btn-hero {
            background: var(--gold);
            color: var(--dark-green);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }

        .btn-hero:hover {
            background: #B8941F;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 162, 39, 0.4);
            color: var(--dark-green);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }

        /* About Section */
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .about-content {
            padding: 40px;
        }

        .btn-read-more {
            background: var(--dark-green);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            margin-top: 20px;
        }

        .btn-read-more:hover {
            background: #2E7D32;
            transform: translateY(-2px);
            color: white;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--dark-green), #2E7D32);
            color: white;
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Vision Mission Section */
        .vision-mission-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-mission-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        /* Features Section */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), #B8941F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .feature-desc {
            color: #666;
            line-height: 1.6;
        }

        /* Services Section */
        .service-card {
            background: var(--light-gold);
            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 35px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 250px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .service-desc {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .btn-service {
            background: var(--dark-green);
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }

        .btn-service:hover {
            background: #2E7D32;
            color: white;
            transform: translateY(-2px);
        }

        /* Booking Form */
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
        }

        .btn-booking {
            background: linear-gradient(135deg, var(--gold), #B8941F);
            color: var(--dark-green);
            padding: 12px 40px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-booking:hover {
            background: linear-gradient(135deg, #B8941F, var(--gold));
            transform: translateY(-2px);
            color: var(--dark-green);
        }

        /* Reviews Section */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .review-stars {
            color: var(--gold);
            margin-bottom: 15px;
        }

        .review-text {
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            display: flex;
            align-items: center;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--dark-green), #2E7D32);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 15px;
        }

        .review-info h5 {
            color: var(--dark-green);
            margin-bottom: 0;
        }

        .review-info small {
            color: #888;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--light-gold);
            color: var(--dark-green);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gold);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--gold);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-green), #2E7D32);
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-primary-hero {
            background: var(--gold);
            color: var(--dark-green);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary-hero:hover {
            background: #B8941F;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 162, 39, 0.4);
            color: var(--dark-green);
        }

        /* Contact Section */
        .contact-section {
            background: white;
        }

        .contact-info {
            padding: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--light-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
            font-size: 1.2rem;
            margin-right: 20px;
        }

        .contact-text h5 {
            color: var(--dark-green);
            margin-bottom: 5px;
        }

        .contact-text p {
            color: #666;
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--dark-green);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-title {
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-form {
            display: flex;
            margin-top: 20px;
        }

        .footer-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .footer-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-form button {
            background: var(--gold);
            color: var(--dark-green);
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .footer-form button:hover {
            background: #B8941F;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content {
                padding: 20px;
            }
        }
