      body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
        }

        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f1f5f9;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05);
            border-color: #06b6d4;
            /* Brand Cyan */
        }

        .bg-brand-navy {
            background-color: #0F172A;
        }

        .text-brand-cyan {
            color: #06B6D4;
        }

        .bg-brand-cyan {
            background-color: #06B6D4;
        }
          /* .service-card {
            border: 1px solid #f1f5f9;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        } */

        .service-card {
            border-color: #06b6d4;
            background-color: #f0f9ff;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover{
            transform: translateY(-5px);
            background-color: #0F172A;
            color:#fff;
            


        }

        .section-divider {
            height: 3px;
            width: 50px;
            background: #06b6d4;
            border-radius: 10px;
            margin-top: 8px;
        }

          .glass-effect {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        /* contact */
         .glass-panel {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .blob-bg {
            position: absolute;
            filter: blur(80px);
            z-index: -1;
            border-radius: 50%;
        }

        .floating-label-group {
            position: relative;
        }

        .creative-input {
            width: 100%;
            padding: 1rem 0;
            background: transparent;
            border: none;
            border-bottom: 2px solid #e2e8f0;
            outline: none;
            transition: all 0.4s ease;
        }

        .creative-input:focus {
            border-bottom-color: #06B6D4;
        }

        .contact-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .contact-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .bg-brand-navy {
            background-color: #0F172A;
        }