

    .govt-calculator-box {
        background-image: url(assets/img/watermark.html);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 40px;
        border-radius: 15px;
     
        text-align: center;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
        background: #E5F0EC;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .icon-box i {
        font-size: 40px;
        color: #4CAF50;
    }
    
    .govt-calculator-box h4 {
        color: #333;
        margin-bottom: 15px;
        font-size: 24px;
    }
    
    .govt-calculator-box p {
        color: #666;
        margin-bottom: 25px;
    }
    
    .govt-calc-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #4CAF50;
        color: #fff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .govt-calc-btn:hover {
        background: #388E3C;
        color: #fff;
        transform: translateY(-2px);
    }
    
    .govt-calc-btn i {
        font-size: 20px;
    }
    
    /* Animation */
    .govt-calculator-box {
        animation: fadeInUp 0.6s ease;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        .govt-calculator-box {
            padding: 30px 20px;
        }
        
        .govt-calc-btn {
            width: 100%;
            justify-content: center;
        }
    }
