
        :root {
            --emerald-green: #10b981;
            --champagne: #f7e7ce;
            --white: #ffffff;
            --dark-green: #059669;
            --light-champagne: #fef3e2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .nav-item{
            margin-left: 35px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-green) !important;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .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(--emerald-green) !important;
        }
        
        .btn-cta {
            background: var(--emerald-green);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(247, 231, 206, 0.9)),
                        url('https://t4.ftcdn.net/jpg/03/25/07/21/360_F_325072136_1WgMYfMSeN8wTdNoCa3wO4jeVie0sA3k.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .btn-hero {
            background: white;
            color: var(--emerald-green);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            background: var(--champagne);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background: var(--light-champagne);
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--emerald-green);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--emerald-green);
        }
        
        /* Counter Section */
        .counter {
            background: var(--emerald-green);
            padding: 60px 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--champagne);
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission Section */
        .vision-mission {
            padding: 80px 0;
            background: white;
        }
        
        .vm-card {
            background: var(--light-champagne);
            padding: 40px;
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
            border-color: var(--emerald-green);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--emerald-green);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background: var(--light-champagne);
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-item i {
            font-size: 3rem;
            color: var(--emerald-green);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .work-process {
            padding: 80px 0;
            background: white;
        }
        
        .process-item {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--emerald-green);
            z-index: -1;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: var(--emerald-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: var(--light-champagne);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card h3 {
            color: var(--emerald-green);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
            min-height: 150px;
        }
        
        .btn-read {
            color: var(--emerald-green);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .btn-read:hover {
            color: var(--dark-green);
            transform: translateX(5px);
        }
        
        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background: white;
        }
        
        .review-card {
            background: var(--light-champagne);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            position: relative;
            margin-bottom: 30px;
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--emerald-green);
            opacity: 0.3;
        }
        
        .review-card p {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .review-author h5 {
            margin: 0;
            color: var(--emerald-green);
        }
        
        .review-author .location {
            color: #666;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: var(--light-champagne);
        }
        
        .accordion-button {
            background: white;
            color: var(--emerald-green);
            font-weight: 600;
            padding: 15px 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--emerald-green);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--emerald-green);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--emerald-green), var(--dark-green));
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--emerald-green);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            background: var(--champagne);
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: white;
        }
        
        .contact-info {
            background: var(--light-champagne);
            padding: 40px;
            border-radius: 10px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--emerald-green);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        .contact-form {
            background: var(--light-champagne);
            padding: 40px;
            border-radius: 10px;
        }
        
        .form-control, .form-select {
            border: 2px solid transparent;
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--emerald-green);
            box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h3 {
            color: var(--emerald-green);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .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: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--emerald-green);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--emerald-green);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--dark-green);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #999;
        }
        
        .footer-bottom a {
            color: var(--emerald-green);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .process-item:not(:last-child)::after {
                display: none;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
            
            .btn-cta {
                margin-top: 10px;
                display: inline-block;
            }
        }
