
        :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;
        }

        .nav-item{
            margin-left:20px !important;
        }

        .nav-item a{
           text-transform: uppercase;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 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: var(--gold);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }

        .btn-cta:hover {
            background: var(--dark-green);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--ivory) 0%, rgba(27, 94, 32, 0.05) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-size:5rem;
            text-transform: uppercase;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 30px;
        }

        .hero-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* 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-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }

        .btn-read-more {
            background: var(--dark-green);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            background: var(--gold);
            color: white;
            transform: translateX(5px);
        }

        /* Counter Section */
        .counter-section {
            background: var(--dark-green);
            color: white;
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        /* 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(-10px);
        }

        .vision-mission-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .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 40px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .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(--ivory);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            background-color: #333;
            height: 100px;
            object-fit: cover;
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .service-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn-service {
            background: var(--gold);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-service:hover {
            background: var(--dark-green);
            color: white;
        }

        /* Booking Form */
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px 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: var(--dark-green);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-booking:hover {
            background: var(--gold);
            color: white;
        }

        /* Reviews Section */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            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: var(--gold);
            margin-bottom: 15px;
        }

        .review-text {
            color: #666;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 20px;
        }

        .review-author {
            display: flex;
            align-items: center;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--dark-green);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }

        .review-info h5 {
            color: var(--dark-green);
            margin-bottom: 5px;
        }

        .review-info small {
            color: #999;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--ivory);
            color: var(--dark-green);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-gold);
            color: var(--dark-green);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--gold);
        }

        /* CTA Section */
        .cta-section {
            background: var(--dark-green);
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }

        .btn-primary-hero {
            background: var(--gold);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-primary-hero:hover {
            background: white;
            color: var(--dark-green);
            transform: translateY(-3px);
        }

        /* Contact Section */
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--light-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.3rem;
            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 20px;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .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: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
        }

        .footer-form button {
            background: var(--gold);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .footer-form button:hover {
            background: white;
            color: var(--dark-green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
        }
