
        :root {
            --primary-green: #32CD32;
            --dark-gray: #2C2C2C;
            --white: #FFFFFF;
            --light-green: #90EE90;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .nav-item{
            margin-left:25px;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--dark-gray) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--primary-green);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-cta {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-green);
            font-weight: 600;
        }
        
        .btn-cta:hover {
            background-color: transparent;
            color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.7)), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .hero-content h1 {
            font-size:6rem;
            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-color: var(--primary-green);
            color: var(--white);
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-green);
            font-weight: 600;
            display: inline-block;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }
        
        .btn-hero:hover {
            background-color: transparent;
            color: var(--primary-green);
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }
        
        /* About Section */
        .about-section {
            background-color: #f8f9fa;
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h3 {
            color: var(--dark-gray);
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .about-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .btn-read-more {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-green);
            font-weight: 600;
            display: inline-block;
        }
        
        .btn-read-more:hover {
            background-color: transparent;
            color: var(--primary-green);
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-green), #228B22);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-green);
        }
        
        .vision-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .vision-mission-card h4 {
            color: var(--dark-gray);
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .vision-mission-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Why Choose Us */
        .feature-box {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-top: 3px solid var(--primary-green);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--dark-gray);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .feature-box p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Services Section */
        .service-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            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 35px rgba(0, 0, 0, 0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 30px;
        }
        
        .service-card-body h4 {
            color: var(--dark-gray);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .service-card-body p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .btn-service {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-green);
            font-weight: 600;
            display: inline-block;
        }
        
        .btn-service:hover {
            background-color: transparent;
            color: var(--primary-green);
        }
        
        /* Book Service Section */
        .book-service-section {
            background: linear-gradient(135deg, var(--primary-green), #228B22);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }
        
        .book-service-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .book-service-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-book {
            background-color: var(--white);
            color: var(--primary-green);
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--white);
            font-weight: bold;
            display: inline-block;
        }
        
        .btn-book:hover {
            background-color: transparent;
            color: var(--white);
            transform: scale(1.05);
        }
        
        /* Reviews Section */
        .review-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            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);
        }
        
        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .stars i {
            font-size: 1.2rem;
        }
        
        .review-text {
            color: #666;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .reviewer h6 {
            color: var(--dark-gray);
            font-weight: bold;
            margin-bottom: 0;
        }
        
        .reviewer small {
            color: #999;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f8f9fa;
        }
        
        .faq-item {
            background-color: var(--white);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
        }
        
        .faq-item.active .faq-question {
            background-color: var(--primary-green);
            color: var(--white);
        }
        
        .faq-question {
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-gray);
            transition: all 0.3s ease;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px 30px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #666;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ccc;
        }
        
        /* Contact Section */
        .contact-section {
            background-color: #f8f9fa;
        }
        
        .contact-info {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .contact-info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-right: 20px;
            width: 40px;
            text-align: center;
        }
        
        .contact-info-item h5 {
            color: var(--dark-gray);
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .contact-info-item p {
            color: #666;
            margin: 0;
            line-height: 1.5;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form .form-control,
        .contact-form .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .contact-form .form-control:focus,
        .contact-form .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
        }
        
        .contact-form label {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .footer-widget p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }
        
        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            outline: none;
        }
        
        .subscribe-form button {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .subscribe-form button:hover {
            background-color: #228B22;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
        }
        
        .footer-bottom p {
            color: #999;
            margin: 0;
        }
        
        .footer-bottom a {
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--light-green);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-image img {
                height: 350px;
                margin-bottom: 30px;
            }
        }
