        :root {
            --midnight-green: #004643;
            --light-teal: #abd1c6;
            --white: #ffffff;
            --light-gray: #f8f9fa;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--midnight-green);
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            color: var(--light-teal);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: var(--midnight-green);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--light-teal);
        }
        
        .btn-cta {
            background-color: var(--light-teal);
            color: var(--midnight-green);
            font-weight: 600;
            border-radius: 50px;
            padding: 8px 20px;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--midnight-green);
            color: var(--white);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 70, 67, 0.7), rgba(0, 70, 67, 0.7)), url('https://images.pexels.com/photos/4386466/pexels-photo-4386466.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size:6rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--midnight-green);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--light-teal);
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 50px;
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-icon {
            font-size: 2.5rem;
            color: var(--light-teal);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--midnight-green);
        }
        
        .counter-text {
            color: #666;
        }
        
        .vm-box {
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vm-icon {
            font-size: 2.5rem;
            color: var(--light-teal);
            margin-bottom: 20px;
        }
        
        .choose-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .choose-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .choose-icon {
            font-size: 2.5rem;
            color: var(--light-teal);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--light-teal);
        }
        
        .process-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-teal);
            color: var(--midnight-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-body {
            padding: 25px;
            background-color: var(--light-gray);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-weight: 700;
            color: var(--midnight-green);
            margin-bottom: 15px;
        }
        
        .service-desc {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .review-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-text {
            color: #666;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .review-name {
            font-weight: 600;
            color: var(--midnight-green);
            margin-bottom: 0;
        }
        
        .review-location {
            color: #999;
            font-size: 0.9rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-teal);
            color: var(--midnight-green);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 0, 0, 0.125);
        }
        
        .cta-section {
            background: linear-gradient(rgba(0, 70, 67, 0.9), rgba(0, 70, 67, 0.9)), url('https://images.pexels.com/photos/5415185/pexels-photo-5415185.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .contact-info-box {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--light-teal);
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--light-teal);
            box-shadow: 0 0 0 0.25rem rgba(171, 209, 198, 0.25);
        }
        
        .footer {
            background-color: var(--midnight-green);
            color: var(--white);
            padding: 70px 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: 2px;
            background-color: var(--light-teal);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--light-teal);
            padding-left: 5px;
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-input {
            border-radius: 50px;
            border: none;
            padding: 12px 20px;
            width: 100%;
        }
        
        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--light-teal);
            color: var(--midnight-green);
            border: none;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--white);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--light-teal);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
