
        .source-sans-3 {
            font-family: "Source Sans 3", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

        .gradient-text {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Diagonal Split Styles */
        .hero-container {
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        .left-section {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            clip-path: polygon(0 0, 60% 0, 50% 100%, 0 100%);
            background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
            z-index: 1;
        }

        .right-section {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            clip-path: polygon(60% 0, 100% 0, 100% 100%, 50% 100%);
            z-index: 0;
        }

        .right-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .left-section {
                clip-path: polygon(0 0, 100% 0, 100% 60%, 0 70%);
            }

            .right-section {
                clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0 100%);
            }

            .hero-container {
                min-height: 800px;
            }
        }

        .image-grid-item {
            transition: all 0.4s ease;
        }

        .image-grid-item:hover {
            transform: scale(1.05);
            z-index: 10;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .product-card:hover::before {
            left: 100%;
        }

        .product-card:hover {
            transform: translateY(-12px);
        }

        .icon-wrapper {
            transition: all 0.4s ease;
        }

        .explore-btn {
            transition: all 0.3s ease;
        }

        .product-card:hover .explore-btn {
            gap: 12px;
        }

        .badge {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .blog-card {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
            z-index: 1;
        }

        .blog-card:hover::before {
            left: 100%;
        }

        .blog-card:hover {
            transform: translateY(-12px);
        }

        .blog-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .blog-image {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-card:hover .blog-image {
            transform: scale(1.12);
        }

        .read-more-btn {
            transition: all 0.3s ease;
        }

        .blog-card:hover .read-more-btn {
            gap: 12px;
        }

        .floating-badge {
            animation: float 3s ease-in-out infinite;
        }

        .gradient-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        }

        .author-avatar {
            transition: transform 0.3s ease;
        }

        .blog-card:hover .author-avatar {
            transform: scale(1.1);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
            }

            50% {
                box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
            }
        }

        @keyframes slide-in {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slide-in 0.6s ease-out forwards;
        }

        .contact-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .contact-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .contact-card:hover {
            transform: translateX(10px);
        }

        .icon-wrapper {
            transition: all 0.4s ease;
        }

        .contact-card:hover .icon-wrapper {
            transform: scale(1.1);
        }

        .form-input {
            transition: all 0.3s ease;
        }

        .form-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
        }

        .submit-btn {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
        }

        .map-illustration {
            animation: float 4s ease-in-out infinite;
        }

        .social-icon {
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
        }

        .newsletter-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1200') center/cover no-repeat;
        }

        .subscribe-btn {
            transition: all 0.3s ease;
        }

        .subscribe-btn:hover {
            transform: translateX(-3px);
            box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
        }