  /* Custom CSS Styles */
        :root {
            --primary-color: #52C41A;
            --primary-hover: #389e0d;
            --secondary-color: #722ED1;
            --accent-color: #13C2C2;
            --text-primary: #262626;
            --text-secondary: #595959;
            --text-light: #8C8C8C;
            --background-light: #F8FFFE;
            --white: #FFFFFF;
            --border-color: #E6F7FF;
            --shadow: 0 4px 20px rgba(82, 196, 26, 0.1);
            --shadow-hover: 0 8px 30px rgba(82, 196, 26, 0.15);
        }
.navbar {
  padding: 0.8rem 1rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 15px;
}


        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--background-light) 0%, rgba(82, 196, 26, 0.05) 100%);
            padding: 80px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
            justify-content: center;
        }

        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--text-light);
        }

        /* Services Grid */
        .services-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            border: 1px solid var(--border-color);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            color: var(--primary-hover);
            gap: 12px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            padding: 60px 0;
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-btn {
            background: var(--white);
            color: var(--primary-color);
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            color: var(--primary-color);
        }

        /* Statistics Section */
        .stats-section {
            background: var(--background-light);
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            font-weight: 600;
            color: var(--text-secondary);
            margin-top: 10px;
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer a {
            color: #BFBFBF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-color);
        }

        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(82, 196, 26, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #404040;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #BFBFBF;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .service-card {
                padding: 30px 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }

