
        :root {
            --charcoal: #2d3436;
            --teal: #00b894;
            --light-teal: #55efc4;
            --white: #ffffff;
            --light-gray: #f5f5f5;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--charcoal);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--teal);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--charcoal);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--teal);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--teal);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        .btn-teal {
            background-color: var(--teal);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-teal:hover {
            background-color: #00a885;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 184, 148, 0.2);
        }
        
        .btn-outline-teal {
            background-color: transparent;
            color: var(--teal);
            border: 2px solid var(--teal);
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-teal:hover {
            background-color: var(--teal);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 184, 148, 0.2);
        }
        
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--teal);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .counter-section {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 15px;
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .vision-mission-item {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-item i {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 20px;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
        }
        
        .feature-item i {
            font-size: 3rem;
            color: var(--teal);
            margin-bottom: 20px;
            background-color: rgba(0, 184, 148, 0.1);
            width: 100px;
            height: 100px;
            line-height: 100px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--teal);
        }
        
        .process-step i {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 15px;
            background-color: rgba(0, 184, 148, 0.1);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px 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 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--charcoal);
        }
        
        .service-card-body p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .review-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .review-card .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 184, 148, 0.1);
            color: var(--teal);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 0, 0, 0.125);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--teal) 0%, #00a885 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--teal);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border-radius: 0;
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.25rem rgba(0, 184, 148, 0.25);
        }
        
        footer {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        footer h5 {
            color: var(--teal);
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        footer ul {
            padding-left: 0;
            list-style: none;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--teal);
            padding-left: 5px;
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 12px 15px;
            border-radius: 50px;
            width: 100%;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            border: none;
            background-color: var(--teal);
            color: var(--white);
            padding: 0 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #00a885;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--teal);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
