 
        :root {
            --color-1: #FDFCDC;
            --color-2: #FED9B7;
            --color-3: #F07167;
            --color-4: #0081A7;
            --color-5: #00AFB9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans Sunuwar', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            padding: 1rem 0;
            background: transparent !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-4) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            color: var(--color-3);
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--color-3) !important;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--color-3), var(--color-4));
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size:4rem;
            font-weight: 700;
            color: var(--color-4);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 2rem;
            color: #555;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-4);
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--color-3);
        }
        
        .about-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }
        
        .read-more-btn {
            color: var(--color-4);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--color-3);
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-4), var(--color-5));
            padding: 60px 0;
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--color-1);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 0;
            background: var(--color-1);
        }
        
        .vision-box, .mission-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-box h3, .mission-box h3 {
            color: var(--color-4);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .vision-box i, .mission-box i {
            color: var(--color-3);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: white;
        }
        
        .feature-box {
            background: var(--color-1);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .feature-box:hover {
            background: var(--color-2);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--color-3);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--color-4);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        /* Booking Form */
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--color-2), var(--color-1));
        }
        
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .booking-form h3 {
            color: var(--color-4);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--color-4);
            box-shadow: 0 0 0 0.2rem rgba(0, 129, 167, 0.25);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }
        
        .service-card {

            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            color: var(--color-4);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        
        .service-content p {
            color: #555;
            line-height: 1.8;
            flex-grow: 1;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--color-1);
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-name {
            font-weight: 600;
            color: var(--color-4);
            margin-bottom: 5px;
        }
        
        .review-rating {
            color: var(--color-3);
        }
        
        .review-rating i {
            margin-right: 2px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }
        
        .accordion-button {
            background: var(--color-1);
            color: var(--color-4);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--color-2);
            color: var(--color-4);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--color-4);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-4), var(--color-5));
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .cta-btn-white {
            background: white;
            color: var(--color-4);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            color: var(--color-4);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .contact-info i {
            color: var(--color-3);
            font-size: 1.5rem;
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-info h5 {
            color: var(--color-4);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        footer {
            background: #222;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: var(--color-5);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--color-5);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--color-5);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--color-4);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
        }
        
        .copyright a {
            color: var(--color-5);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
