
        :root {
            --mint-green: #a8e6cf;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
            --primary-color: #4CAF50;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-item{
            margin-left:35px !important;
        }

        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #3d8b40;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .hero-section {
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8ZmluYW5jZXxlbnwwfHwwfHx8MA%3D%3D');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            margin-top: -80px;
        }
        
        .hero-title {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
            background-color: var(--light-gray);
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--light-gray);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--mint-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height:400px;
            width:100%;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            height: 100%;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .booking-form {
            background-color: var(--light-gray);
            border-radius: 10px;
            padding: 30px;
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 12px 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--mint-green);
            color: var(--dark-gray);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .cta-section {
            background-color: var(--primary-color);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 30px;
        }
        
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-link {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--mint-green);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            border: none;
            padding: 12px 15px;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: #3d8b40;
        }
        
        .copyright {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: var(--mint-green);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
