   /* Decorative gradient blobs */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            z-index: 0;
        }

        .contact-container {
            position: relative;
            z-index: 1;
            padding: 60px 0;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            color: var(--primary-color);
        }

        .contact-card h2 {
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
        }


        .info-box {
            background: #33c89e2b;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: 0.3s;
        }

        .info-box a {
            color: #000;
        }

        .info-box i {
            font-size: 24px;
            color: var(--primary-color);
        }


        .info-box:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .info-box:hover a {
            color: #fff;
        }

        .info-box:hover i {
            color: #fff;
        }

        .social-links {
            text-align: center;
            margin-top: 25px;
        }

        .social-links a {
            margin: 0 10px;
            color: var(--primary-color);
            font-size: 20px;
            transition: 0.3s;
        }

        .social-links a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {

            .info-box {
                padding: 12px;
                align-items: baseline;
                gap: 10px;

                i {
                    font-size: 20px;
                }
            }

            .contact-card {
                padding: 20px 12px;
            }
        }

        .contact-card1 .social-icon-f {
            background-color: #33c89e2b;
            border: 1px solid var(--primary-color);
        }

        .contact-card1 .social-icon-f i {
            color: var(--primary-color);
        }

        .contact-card1 .social-icon-f:hover {
            background-color: var(--primary-color);

            i {
                color: #fff;
            }
        }