body{
        background: linear-gradient(135deg, #c7eed4ff, #b4cfe9ff, #e0c3fcff, #fbc1ff);
        animation: gradientMove 5s ease infinite;
    }

    /* Hero Section Gradient Animation  */
    .hero-section {
        height: 80vh;
        background: linear-gradient(-45deg, #b90dfdff, #6610f2, #4ea1ff, #e26cffff);
        background-size: 400% 400%;
        animation: gradientMove 10s ease infinite;
        color: #fff;
        text-shadow: 0 4px 6px rgba(223, 33, 33, 0.4);
        border-radius: 4px;
    }

    
    .aboutP{
        background: linear-gradient(-45deg, #c7eed4ff, #b4cfe9ff, #e0c3fcff, #fbc1ff);
        border-radius: 5px;
    }
    
    .ctaB{
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background: linear-gradient(-45deg, #fbc1ff, #e0c3fcff, #b4cfe9ff, #c7eed4ff);
        animation: gradientMove 10s ease infinite;
    }
    
    /* Service Card Hover Effect */
    .service-card {
        text-decoration: none;
        color: inherit;
    }
    
    .service-card .card {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-radius: 15px;
    }
    
    .service-card:hover .card {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    /* -----------PATENT FILLING ------------ Card Hover Effect for Other Sections */

    .bg-pfl{
        background: linear-gradient(135deg, #c7eed4ff, #b4cfe9ff, #e0c3fcff, #fbc1ff);
        animation: gradientMove 5s ease infinite;
        border-radius: 15px;
    }
    body.dark-mode .bg-pfl{ background: #121212; }
    body.dark-mode .dbg-dark{ background: #1b0d0d !important ; }
    

    .hover-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 15px;
    }
    .hover-card:hover {
        transform: translateY(-8px) scale(1.02);
        background-color: #dc4eff;
        color:aliceblue;
        text-shadow: 0 4px 6px rgba(10, 10, 10, 0.5);
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    body.dark-mode .hover-card:hover {
        text-shadow: 0;
        font-weight:500;
        color: rgb(198, 207, 228);
    }

    
    /* Section Headings */
    .section-title {
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: #0d6efd;
    }

    /* CTA Button */
    .cta-btn {
        font-size: 1.2rem;
        padding: 12px 28px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    .cta-btn:hover {
        background-color: #084298;
        color: #fff;
    }

    @keyframes gradientMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
