* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-dark: #0d0d0d;
            --bg-card: #141414;
            --primary: #4a7c20;
            --highlight: #6abf2e;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --text-light-gray: #c0c0c0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            overflow-x: hidden;
        }

        /* Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(106, 191, 46, 0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            z-index: 0;
        }

        /* Particle dots animation */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--highlight);
            border-radius: 50%;
            opacity: 0.3;
            animation: drift 20s infinite linear;
        }

        @keyframes drift {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 0.3;
            }

            90% {
                opacity: 0.3;
            }

            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.5rem 2rem;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(106, 191, 46, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 2px solid #7bc06b;
            padding-left: 0.85rem;
            margin-left: 0.35rem;
        }

        .logo-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-white);
            line-height: 1.2;
        }

        .logo-motto {
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            color: #7bc06b;
            text-transform: none;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--highlight);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--highlight);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-card);
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(106, 191, 46, 0.2);
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text-white);
        }

        .dropdown-content a:hover {
            background: rgba(106, 191, 46, 0.1);
        }

        .btn-primary {
            background: var(--highlight);
            color: var(--text-white);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: #7dd33a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(106, 191, 46, 0.3);
        }

        .nav-container > .btn-primary {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-white);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--highlight);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: rgba(106, 191, 46, 0.1);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(106, 191, 46, 0.15) 0%, transparent 70%);
            animation: pulse-glow 4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            display: inline-block;
            background: rgba(106, 191, 46, 0.2);
            color: var(--highlight);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .hero-title span {
            color: var(--highlight);
        }

        .hero-text {
            color: var(--text-gray);
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s backwards;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            position: relative;
        }

        .about-banner {
            background: linear-gradient(135deg, var(--primary), var(--highlight));
            padding: 1rem 2rem;
            text-align: center;
            margin-bottom: 4rem;
            animation: slideDown 0.8s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }

        .about-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .section-label {
            color: var(--highlight);
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-text {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-card);
            border-radius: 12px;
            border: 1px solid rgba(106, 191, 46, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-20px);
        }

        .feature-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-item:hover {
            border-color: var(--highlight);
            transform: translateX(10px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(106, 191, 46, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--highlight);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            color: var(--text-gray);
            font-size: 0.875rem;
        }

        .about-image {
            position: relative;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .about-image.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .stat-card {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--highlight);
            padding: 1.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(106, 191, 46, 0.3);
        }

        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-white);
        }

        .stat-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            position: relative;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(106, 191, 46, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--highlight);
            box-shadow: 0 20px 40px rgba(106, 191, 46, 0.2);
        }

        .service-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(13, 13, 13, 0.8) 100%);
        }

        .service-icon {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: 60px;
            height: 60px;
            background: var(--highlight);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(106, 191, 46, 0.4);
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .service-content p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Software Rentals Section */
        .rentals {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(74, 124, 32, 0.05) 50%, var(--bg-dark) 100%);
        }

        .rentals-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(106, 191, 46, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border-color: var(--highlight);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--highlight);
            color: var(--text-white);
            padding: 0.5rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(106, 191, 46, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(106, 191, 46, 0.2);
            margin-bottom: 1.5rem;
        }

        .pricing-header h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-header .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--highlight);
        }

        .pricing-header .price span {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-light-gray);
        }

        .pricing-features li svg {
            color: var(--highlight);
            flex-shrink: 0;
        }

        .pricing-card .btn-primary {
            width: 100%;
            justify-content: center;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 2rem;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(106, 191, 46, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(74, 124, 32, 0.1) 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: rgba(106, 191, 46, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--highlight);
        }

        .contact-item-text h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-item-text p {
            color: var(--text-gray);
            margin: 0;
            font-size: 0.9rem;
        }

        .contact-form {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(106, 191, 46, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--bg-dark);
            border: 1px solid rgba(106, 191, 46, 0.2);
            border-radius: 10px;
            color: var(--text-white);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--highlight);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .contact-form .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 1rem;
        }

        /* Footer */
        .footer {
            background: #080808;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(106, 191, 46, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .footer-logo img {
            height: 70px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .footer-logo .logo-name {
            font-size: 1.4rem;
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(106, 191, 46, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--highlight);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--highlight);
            color: var(--text-white);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--highlight);
        }

        .footer-bottom {
            border-top: 1px solid rgba(106, 191, 46, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .logo {
                max-width: 80%;
            }

            .logo img {
                height: 35px;
            }

            .logo-name {
                font-size: 0.95rem;
            }

            .logo-motto {
                font-size: 0.6rem;
            }

            .footer-logo img {
                height: 50px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--bg-dark);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
                border-top: 1px solid rgba(106, 191, 46, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 1rem;
            }

            .nav-container > .btn-primary {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 6rem 1rem 3rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .stat-card {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .testi-card {
                flex: 0 0 calc(100% - 1rem) !important;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Counter animation */
        .counter {
            display: inline-block;
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            padding: 3rem 0;
        }

        .stat-box {
            background: var(--bg-card);
            border: 1px solid rgba(106, 191, 46, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(50px);
        }

        .stat-box.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-box:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(106, 191, 46, 0.3);
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(106, 191, 46, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .stat-box:hover::before {
            left: 100%;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: icon-pulse 2s ease-in-out infinite;
        }

        .stat-icon svg {
            stroke: white;
        }

        @keyframes icon-pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(106, 191, 46, 0.4);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 20px 10px rgba(106, 191, 46, 0.2);
            }
        }

        .stat-count {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 992px) {
            .stats-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .stats-section {
                grid-template-columns: 1fr;
            }

            .stat-count {
                font-size: 2.5rem;
            }
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: whatsapp-pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        @keyframes whatsapp-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 75px;
            background: #333;
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-left-color: #333;
        }